| Revision | 2451 (tree) |
|---|---|
| Time | 2022-10-13 19:56:34 |
| Author | t_nakayama1971 |
(empty log message)
| @@ -33,9 +33,6 @@ | ||
| 33 | 33 | /** ユーザー情報 パスワード*/ |
| 34 | 34 | private static final String TAG_PWD = "Pwd"; |
| 35 | 35 | |
| 36 | - /** ユーザID、パスワードエラーメッセージ */ | |
| 37 | - private static final String MSGID_NOT_USER = "ZZ000000001"; | |
| 38 | - | |
| 39 | 36 | /** |
| 40 | 37 | * ログオン主処理 |
| 41 | 38 | * |
| @@ -66,9 +63,9 @@ | ||
| 66 | 63 | // ログオン処理 |
| 67 | 64 | final var auth = Factory.create(Authentication.class); |
| 68 | 65 | if (!auth.logon(uf.getString(TAG_UID), uf.getString(TAG_PWD))) { |
| 69 | - MsgUtil.putTopMessage(uf, MSGID_NOT_USER); | |
| 70 | - MsgUtil.putMessage(uf, TAG_UID, MSGID_NOT_USER); | |
| 71 | - MsgUtil.putMessage(uf, TAG_PWD, MSGID_NOT_USER); | |
| 66 | + MsgUtil.putTopMessage(uf, "ZZ000000001"); | |
| 67 | + MsgUtil.putMessage(uf, TAG_UID, "ZZ000000001"); | |
| 68 | + MsgUtil.putMessage(uf, TAG_PWD, "ZZ000000001"); | |
| 72 | 69 | return ID_VIEW; |
| 73 | 70 | } |
| 74 | 71 |