(empty log message)
@@ -51,6 +51,12 @@ | ||
51 | 51 | /** インデックスアクションURL(アクション未指定時にリダイレクトするパス) */ |
52 | 52 | public static final StrutsConfigNames STRUTS_URL_INDEX = new StrutsConfigNames("struts.url.index"); |
53 | 53 | |
54 | + /** メニューボタン遷移URL */ | |
55 | + public static final StrutsConfigNames STRUTS_URL_MENU = new StrutsConfigNames("struts.url.menu"); | |
56 | + | |
57 | + /** ログアウトボタン遷移URL */ | |
58 | + public static final StrutsConfigNames STRUTS_URL_LOGOUT = new StrutsConfigNames("struts.url.logout"); | |
59 | + | |
54 | 60 | /** 機能JSPパス(基底パスからの相対パス指定) */ |
55 | 61 | public static final StrutsConfigNames STRUTS_JSP_FUNCTION = new StrutsConfigNames("strtus.jsp.function"); |
56 | 62 |
@@ -170,7 +170,7 @@ | ||
170 | 170 | if (name == null) { |
171 | 171 | throw new NullPointerException(); |
172 | 172 | } |
173 | - return isEmpty(name.key()); | |
173 | + return isEmpty(name.getKey()); | |
174 | 174 | } |
175 | 175 | |
176 | 176 | /** |
@@ -204,7 +204,7 @@ | ||
204 | 204 | if (name == null) { |
205 | 205 | throw new NullPointerException(); |
206 | 206 | } |
207 | - return getString(name.key()); | |
207 | + return getString(name.getKey()); | |
208 | 208 | } |
209 | 209 | |
210 | 210 | /** |
@@ -241,7 +241,7 @@ | ||
241 | 241 | if (name == null) { |
242 | 242 | throw new NullPointerException(); |
243 | 243 | } |
244 | - return getStrings(name.key(), execludeComment); | |
244 | + return getStrings(name.getKey(), execludeComment); | |
245 | 245 | } |
246 | 246 | |
247 | 247 | /** |
@@ -264,7 +264,7 @@ | ||
264 | 264 | if (name == null) { |
265 | 265 | throw new NullPointerException(); |
266 | 266 | } |
267 | - return getStrings(name.key()); | |
267 | + return getStrings(name.getKey()); | |
268 | 268 | } |
269 | 269 | |
270 | 270 | /** |
@@ -286,7 +286,7 @@ | ||
286 | 286 | if (name == null) { |
287 | 287 | throw new NullPointerException(); |
288 | 288 | } |
289 | - return getBoolean(name.key()); | |
289 | + return getBoolean(name.getKey()); | |
290 | 290 | } |
291 | 291 | |
292 | 292 | /** |
@@ -308,7 +308,7 @@ | ||
308 | 308 | if (name == null) { |
309 | 309 | throw new NullPointerException(); |
310 | 310 | } |
311 | - return getLong(name.key()); | |
311 | + return getLong(name.getKey()); | |
312 | 312 | } |
313 | 313 | |
314 | 314 | /** |
@@ -330,6 +330,6 @@ | ||
330 | 330 | if (name == null) { |
331 | 331 | throw new NullPointerException(); |
332 | 332 | } |
333 | - return getInteger(name.key()); | |
333 | + return getInteger(name.getKey()); | |
334 | 334 | } |
335 | 335 | } |
@@ -138,7 +138,7 @@ | ||
138 | 138 | * 定義列挙型クラスインスタンスのプロパティキー文字列を取得します。<br> |
139 | 139 | * @return プロパティキー文字列 |
140 | 140 | */ |
141 | - public final String key() { | |
141 | + public final String getKey() { | |
142 | 142 | return key; |
143 | 143 | } |
144 | 144 |