(empty log message)
@@ -1,16 +0,0 @@ | ||
1 | -package org.phosphoresce.webcore.struts.sample.function.C00001; | |
2 | - | |
3 | -import org.phosphoresce.webcore.struts.sample.common.action.SampleConstants; | |
4 | - | |
5 | -/** | |
6 | - * 共通機能定数クラス<br> | |
7 | - * | |
8 | - * @author Kitagawa<br> | |
9 | - * | |
10 | - *<!-- | |
11 | - * 更新日 更新者 更新内容 | |
12 | - * 2012/07/18 Kitagawa 新規作成 | |
13 | - *--> | |
14 | - */ | |
15 | -public interface C00001Constants extends SampleConstants { | |
16 | -} |
@@ -1,33 +0,0 @@ | ||
1 | -package org.phosphoresce.webcore.struts.sample.function.C00001; | |
2 | - | |
3 | -import org.phosphoresce.webcore.hibernate4.model.SMUser; | |
4 | -import org.phosphoresce.webcore.struts.action.Forward; | |
5 | -import org.phosphoresce.webcore.struts.action.ServletContainer; | |
6 | -import org.phosphoresce.webcore.struts.action.WindowSessionContainer; | |
7 | -import org.phosphoresce.webcore.struts.annotation.StrutsAction; | |
8 | -import org.phosphoresce.webcore.struts.annotation.StrutsMethod; | |
9 | -import org.phosphoresce.webcore.struts.sample.common.action.SampleAction; | |
10 | -import org.phosphoresce.webcore.struts.sample.common.action.SampleForm; | |
11 | - | |
12 | -/** | |
13 | - * 共通機能アクションクラス<br> | |
14 | - * | |
15 | - * @author Kitagawa<br> | |
16 | - * | |
17 | - *<!-- | |
18 | - * 更新日 更新者 更新内容 | |
19 | - * 2012/07/03 Kitagawa 新規作成 | |
20 | - *--> | |
21 | - */ | |
22 | -@StrutsAction | |
23 | -public class C00001Action extends SampleAction implements C00001Constants { | |
24 | - | |
25 | - /** | |
26 | - * @see org.phosphoresce.webcore.struts.action.AbstractAction#index(org.phosphoresce.webcore.struts.action.AbstractForm, org.phosphoresce.webcore.struts.action.WindowSessionContainer, org.phosphoresce.webcore.struts.action.ServletContainer) | |
27 | - */ | |
28 | - @Override | |
29 | - @StrutsMethod(checkLogin = false, checkSesion = false, checkToken = false) | |
30 | - public Forward index(SampleForm form, WindowSessionContainer<SMUser> session, ServletContainer<SMUser> servlet) throws Throwable { | |
31 | - return new Forward("C00001.jsp"); | |
32 | - } | |
33 | -} |
@@ -1,18 +0,0 @@ | ||
1 | -package org.phosphoresce.webcore.struts.sample.function.C00001; | |
2 | - | |
3 | -import org.phosphoresce.webcore.struts.action.ScreenSession; | |
4 | -import org.phosphoresce.webcore.struts.annotation.StrutsSession; | |
5 | - | |
6 | -/** | |
7 | - * 共通機能セッションクラス<br> | |
8 | - * | |
9 | - * @author Kitagawa<br> | |
10 | - * | |
11 | - *<!-- | |
12 | - * 更新日 更新者 更新内容 | |
13 | - * 2012/07/18 Kitagawa 新規作成 | |
14 | - *--> | |
15 | - */ | |
16 | -@StrutsSession | |
17 | -public class C00001Session implements ScreenSession, C00001Constants { | |
18 | -} |
@@ -1,17 +0,0 @@ | ||
1 | -package org.phosphoresce.webcore.struts.sample.function.C00001; | |
2 | - | |
3 | -import org.phosphoresce.webcore.struts.annotation.StrutsUtility; | |
4 | - | |
5 | -/** | |
6 | - * 共通機能ユーティリティクラス<br> | |
7 | - * | |
8 | - * @author Kitagawa<br> | |
9 | - * | |
10 | - *<!-- | |
11 | - * 更新日 更新者 更新内容 | |
12 | - * 2012/07/03 Kitagawa 新規作成 | |
13 | - *--> | |
14 | - */ | |
15 | -@StrutsUtility | |
16 | -public class C00001Util implements C00001Constants { | |
17 | -} |
@@ -1,28 +0,0 @@ | ||
1 | -package org.phosphoresce.webcore.struts.sample.function.C00001; | |
2 | - | |
3 | -import org.phosphoresce.webcore.hibernate4.model.SMUser; | |
4 | -import org.phosphoresce.webcore.struts.action.ServletContainer; | |
5 | -import org.phosphoresce.webcore.struts.annotation.StrutsLogic; | |
6 | -import org.phosphoresce.webcore.struts.sample.common.action.SampleLogic; | |
7 | - | |
8 | -/** | |
9 | - * 共通機能ロジッククラス<br> | |
10 | - * | |
11 | - * @author Kitagawa<br> | |
12 | - * | |
13 | - *<!-- | |
14 | - * 更新日 更新者 更新内容 | |
15 | - * 2012/07/03 Kitagawa 新規作成 | |
16 | - *--> | |
17 | - */ | |
18 | -@StrutsLogic | |
19 | -public class C00001Logic extends SampleLogic implements C00001Constants { | |
20 | - | |
21 | - /** | |
22 | - * コンストラクタ<br> | |
23 | - * @param servlet | |
24 | - */ | |
25 | - protected C00001Logic(ServletContainer<SMUser> servlet) { | |
26 | - super(servlet); | |
27 | - } | |
28 | -} |
@@ -1,43 +0,0 @@ | ||
1 | -package org.phosphoresce.webcore.struts.sample.function.C00001; | |
2 | - | |
3 | -import org.phosphoresce.webcore.hibernate4.model.SMUser; | |
4 | -import org.phosphoresce.webcore.struts.action.ServletContainer; | |
5 | -import org.phosphoresce.webcore.struts.action.WindowSessionContainer; | |
6 | -import org.phosphoresce.webcore.struts.annotation.StrutsForm; | |
7 | -import org.phosphoresce.webcore.struts.enums.FormScope; | |
8 | -import org.phosphoresce.webcore.struts.sample.common.action.SampleForm; | |
9 | - | |
10 | -/** | |
11 | - * 共通機能アクションフォームクラス<br> | |
12 | - * <br> | |
13 | - * 当クラスは環境定義されたルートパス指定時等にディフォルトアクションにリダイレクトする為のアクション用のフォームです。<br> | |
14 | - * フィールド定義は不要です。<br> | |
15 | - * | |
16 | - * @author Kitagawa<br> | |
17 | - * | |
18 | - *<!-- | |
19 | - * 更新日 更新者 更新内容 | |
20 | - * 2012/07/03 Kitagawa 新規作成 | |
21 | - *--> | |
22 | - */ | |
23 | -@StrutsForm(scope = FormScope.REQUEST) | |
24 | -public class C00001Form extends SampleForm implements C00001Constants { | |
25 | - | |
26 | - /** | |
27 | - * @see org.phosphoresce.webcore.struts.action.AbstractForm#reset(org.phosphoresce.webcore.struts.action.ServletContainer, org.phosphoresce.webcore.struts.action.WindowSessionContainer) | |
28 | - */ | |
29 | - @Override | |
30 | - public void reset(ServletContainer<SMUser> servlet, WindowSessionContainer<SMUser> session) { | |
31 | - // TODO メソッド | |
32 | - | |
33 | - } | |
34 | - | |
35 | - /** | |
36 | - * @see org.phosphoresce.webcore.struts.action.AbstractForm#init(org.phosphoresce.webcore.struts.action.ServletContainer, org.phosphoresce.webcore.struts.action.WindowSessionContainer) | |
37 | - */ | |
38 | - @Override | |
39 | - public void init(ServletContainer<SMUser> servlet, WindowSessionContainer<SMUser> session) { | |
40 | - // TODO メソッド | |
41 | - | |
42 | - } | |
43 | -} | |
\ No newline at end of file |