• R/O
  • SSH
  • HTTPS

phosphoresce: Commit


Commit MetaInfo

Revision386 (tree)
Time2013-08-13 22:47:43
Authorbbcry

Log Message

(empty log message)

Change Summary

Incremental Difference

--- develop/Phosphoresce_Java_Webcore/trunk/webfw_struts/org/phosphoresce/webcore/ext/struts/StrutsConfigNames.java (revision 385)
+++ develop/Phosphoresce_Java_Webcore/trunk/webfw_struts/org/phosphoresce/webcore/ext/struts/StrutsConfigNames.java (revision 386)
@@ -51,6 +51,12 @@
5151 /** インデックスアクションURL(アクション未指定時にリダイレクトするパス) */
5252 public static final StrutsConfigNames STRUTS_URL_INDEX = new StrutsConfigNames("struts.url.index");
5353
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+
5460 /** 機能JSPパス(基底パスからの相対パス指定) */
5561 public static final StrutsConfigNames STRUTS_JSP_FUNCTION = new StrutsConfigNames("strtus.jsp.function");
5662
--- develop/Phosphoresce_Java_Webcore/trunk/webfw/org/phosphoresce/webcore/core/config/Config.java (revision 385)
+++ develop/Phosphoresce_Java_Webcore/trunk/webfw/org/phosphoresce/webcore/core/config/Config.java (revision 386)
@@ -170,7 +170,7 @@
170170 if (name == null) {
171171 throw new NullPointerException();
172172 }
173- return isEmpty(name.key());
173+ return isEmpty(name.getKey());
174174 }
175175
176176 /**
@@ -204,7 +204,7 @@
204204 if (name == null) {
205205 throw new NullPointerException();
206206 }
207- return getString(name.key());
207+ return getString(name.getKey());
208208 }
209209
210210 /**
@@ -241,7 +241,7 @@
241241 if (name == null) {
242242 throw new NullPointerException();
243243 }
244- return getStrings(name.key(), execludeComment);
244+ return getStrings(name.getKey(), execludeComment);
245245 }
246246
247247 /**
@@ -264,7 +264,7 @@
264264 if (name == null) {
265265 throw new NullPointerException();
266266 }
267- return getStrings(name.key());
267+ return getStrings(name.getKey());
268268 }
269269
270270 /**
@@ -286,7 +286,7 @@
286286 if (name == null) {
287287 throw new NullPointerException();
288288 }
289- return getBoolean(name.key());
289+ return getBoolean(name.getKey());
290290 }
291291
292292 /**
@@ -308,7 +308,7 @@
308308 if (name == null) {
309309 throw new NullPointerException();
310310 }
311- return getLong(name.key());
311+ return getLong(name.getKey());
312312 }
313313
314314 /**
@@ -330,6 +330,6 @@
330330 if (name == null) {
331331 throw new NullPointerException();
332332 }
333- return getInteger(name.key());
333+ return getInteger(name.getKey());
334334 }
335335 }
--- develop/Phosphoresce_Java_Webcore/trunk/webfw/org/phosphoresce/webcore/core/GlobalConfigName.java (revision 385)
+++ develop/Phosphoresce_Java_Webcore/trunk/webfw/org/phosphoresce/webcore/core/GlobalConfigName.java (revision 386)
@@ -138,7 +138,7 @@
138138 * 定義列挙型クラスインスタンスのプロパティキー文字列を取得します。<br>
139139 * @return プロパティキー文字列
140140 */
141- public final String key() {
141+ public final String getKey() {
142142 return key;
143143 }
144144
Show on old repository browser