No. | URL | description | class#method | Form or Body | return | count | ||
---|---|---|---|---|---|---|---|---|
fields | class lines | method lines | ||||||
1 | /root/ | @author jflute | RootAction#index() | HtmlResponse | 0 | 7 | 3 | |
2 | /lido/auth/signin | @author s.tadokoro | LidoAuthAction#signin() | signinBody | JsonResponse<Void> | 10 | 141 | 6 |
3 | /lido/auth/signout | @author s.tadokoro | LidoAuthAction#signout() | JsonResponse<Void> | 10 | 141 | 4 | |
4 | /lido/auth/signup | @author s.tadokoro | LidoAuthAction#signup() | signupBody | JsonResponse<Void> | 10 | 141 | 11 |
5 | /lido/auth/register/{account}/{token} | @author s.tadokoro | LidoAuthAction#register() | JsonResponse<Void> | 10 | 141 | 5 | |
6 | /lido/mypage/ | @author s.tadokoro | LidoMypageAction#index() | JsonResponse<List<MypageProductResult>> | 1 | 17 | 11 | |
7 | /lido/product/detail/{productId} | @author s.tadokoro | LidoProductDetailAction#index() | JsonResponse<ProductDetailResult> | 1 | 42 | 4 | |
8 | /lido/product/list/{pageNumber} | @author s.tadokoro | LidoProductListAction#index() | ProductsearchBody | JsonResponse<searchPagingResult<ProductRowResult>> | 3 | 70 | 11 |
9 | /member/add/ | @author jflute | MemberAddAction#index() | HtmlResponse | 2 | 47 | 6 | |
10 | /member/add/register | @author jflute | MemberAddAction#register() | MemberAddForm | HtmlResponse | 2 | 47 | 10 |
11 | /member/edit/{memberId} | @author jflute | MemberEditAction#index() | HtmlResponse | 2 | 104 | 7 | |
12 | /member/edit/update | @author jflute | MemberEditAction#update() | MemberEditForm | HtmlResponse | 2 | 104 | 10 |
13 | /member/edit/withdrawal | @author jflute | MemberEditAction#withdrawal() | MemberEditForm | HtmlResponse | 2 | 104 | 7 |
14 | /member/list/{pageNumber} | @author jflute | MemberListAction#index() | MembersearchForm | HtmlResponse | 2 | 84 | 13 |
15 | /member/purchase/list/{memberId}/{pageNumber} | @author jflute | MemberPurchaseListAction#index() | HtmlResponse | 1 | 15 | 3 | |
16 | /mypage/ | @author jflute | MypageAction#index() | HtmlResponse | 1 | 56 | 8 | |
17 | /product/detail/{productId} | @author jflute | ProductDetailAction#index() | HtmlResponse | 1 | 45 | 7 | |
18 | /product/list/{pageNumber} | @author jflute | ProductListAction#index() | ProductsearchForm | HtmlResponse | 2 | 76 | 13 |
19 | /profile/ | @author jflute | ProfileAction#index() | HtmlResponse | 1 | 48 | 8 | |
20 | /signin/ | @author jflute | signinAction#index() | HtmlResponse | 1 | 41 | 6 | |
21 | /signin/signin | @author jflute | signinAction#signin() | signinForm | HtmlResponse | 1 | 41 | 9 |
22 | /signin/reminder/ | @author masaki.kamachi | signinReminderAction#index() | HtmlResponse | 0 | 7 | 3 | |
23 | /signout/ | @author toshiaki.arai | signoutAction#index() | HtmlResponse | 1 | 10 | 4 | |
24 | /signup/ | @author annie_pocket | signupAction#index() | HtmlResponse | 7 | 106 | 3 | |
25 | /signup/signup | @author annie_pocket | signupAction#signup() | signupForm | HtmlResponse | 7 | 106 | 11 |
26 | /signup/register/{account}/{token} | @author annie_pocket | signupAction#register() | HtmlResponse | 7 | 106 | 5 | |
27 | /startup/ | @author iwamatsu0430 | startupAction#index() | HtmlResponse | 1 | 40 | 3 | |
28 | /startup/create | @author iwamatsu0430 | startupAction#create() | startupForm | HtmlResponse | 1 | 40 | 13 |
29 | /withdrawal/ | @author annie_pocket | WithdrawalAction#index() | HtmlResponse | 3 | 74 | 3 | |
30 | /withdrawal/confirm | @author annie_pocket | WithdrawalAction#confirm() | WithdrawalForm | HtmlResponse | 3 | 74 | 6 |
31 | /withdrawal/done | @author annie_pocket | WithdrawalAction#done() | WithdrawalForm | HtmlResponse | 3 | 74 | 9 |
Execute Method: org.docksidestage.app.web.RootAction#index()
annotations: @AllowAnyoneAccess @Execute
@author jflute
Return as: HtmlResponseimplementations: redirect(MypageAction.class)
Execute Method: org.docksidestage.app.web.lido.auth.LidoAuthAction#signin()
annotations: @Execute @AllowAnyoneAccess
@author s.tadokoro
@author jflute
@author s.tadokoro
No. | name | type | comment | annotations |
---|---|---|---|---|
1 | account | string |
@Required | |
2 | password | string |
@Required |
Execute Method: org.docksidestage.app.web.lido.auth.LidoAuthAction#signout()
annotations: @Execute
@author s.tadokoro
@author jflute
Execute Method: org.docksidestage.app.web.lido.auth.LidoAuthAction#signup()
annotations: @Execute
@author s.tadokoro
@author jflute
@author s.tadokoro
No. | name | type | comment | annotations |
---|---|---|---|---|
1 | memberName | string |
@Required | |
2 | memberAccount | string |
@Required | |
3 | password | string |
@Required | |
4 | reminderQuestion | string |
@Required | |
5 | reminderAnswer | string |
@Required |
Execute Method: org.docksidestage.app.web.lido.auth.LidoAuthAction#register()
annotations: @Execute
@author s.tadokoro
@author jflute
No. | name | type | comment | annotations |
---|---|---|---|---|
1 | account | string |
||
2 | token | string |
Execute Method: org.docksidestage.app.web.lido.mypage.LidoMypageAction#index()
annotations: @AllowAnyoneAccess @Execute
@author s.tadokoro
@author jflute
No. | name | type | comment | annotations |
---|---|---|---|---|
1 | productName | string |
@Required | |
2 | regularPrice | Integer |
@Required |
Execute Method: org.docksidestage.app.web.lido.product.LidoProductDetailAction#index()
annotations: @AllowAnyoneAccess @Execute
@author s.tadokoro
@author jflute
No. | name | type | comment | annotations |
---|---|---|---|---|
1 | productId | Integer |
No. | name | type | comment | annotations |
---|---|---|---|---|
1 | productId | Integer |
@Required | |
2 | productName | string |
@Required | |
3 | categoryName | string |
@Required | |
4 | regularPrice | Integer |
@Required | |
5 | productHandleCode | string |
@Required |
Execute Method: org.docksidestage.app.web.lido.product.LidoProductListAction#index()
annotations: @AllowAnyoneAccess @Execute
@author s.tadokoro
@author jflute
No. | name | type | comment | annotations |
---|---|---|---|---|
1 | pageNumber | OptionalThing<Integer> |
@author s.tadokoro
No. | name | type | comment | annotations |
---|---|---|---|---|
1 | productName | string |
@Length{max=10} | |
2 | productstatus | CDef.Productstatus |
{ONs=OnsaleProduction, PsT=Productionstop, ssT=salestop} |
|
3 | purchaseMemberName | string |
@Length{max=5} |
No. | name | type | comment | annotations | ||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | pagesize | Integer |
row count per one page |
@Required | ||||||||||||||||||||||||
2 | currentPageNumber | Integer |
number of current page |
@Required | ||||||||||||||||||||||||
3 | allRecordCount | Integer |
count of all records |
@Required | ||||||||||||||||||||||||
4 | allPageCount | Integer |
count of all pages |
@Required | ||||||||||||||||||||||||
5 | rows | List<ProductRowResult> |
paging data for current page |
@NotNull , @Valid | ||||||||||||||||||||||||
|
Execute Method: org.docksidestage.app.web.member.MemberAddAction#index()
annotations: @Execute
@author jflute
Return as: HtmlResponseimplementations: asHtml(path_Member_MemberAddHtml)
Execute Method: org.docksidestage.app.web.member.MemberAddAction#register()
annotations: @Execute
@author jflute
Form or Body: MemberAddForm@author jflute
No. | name | type | comment | annotations |
---|---|---|---|---|
1 | memberName | string |
@Required | |
2 | memberAccount | string |
@Required | |
3 | birthdate | LocalDate |
@ValidateTypeFailure | |
4 | memberstatus | CDef.Memberstatus |
{FML=Formalized, WDL=Withdrawal, PRV=Provisional} |
@Required |
implementations: asHtml(path_Member_MemberAddHtml),asHtml(path_Error_showErrorsHtml),redirect(MemberListAction.class)
Execute Method: org.docksidestage.app.web.member.MemberEditAction#index()
annotations: @Execute
@author jflute
URL Parameter:No. | name | type | comment | annotations |
---|---|---|---|---|
1 | memberId | Integer |
implementations: asHtml(path_Member_MemberEditHtml)
Execute Method: org.docksidestage.app.web.member.MemberEditAction#update()
annotations: @Execute
@author jflute
Form or Body: MemberEditForm@author jflute
No. | name | type | comment | annotations |
---|---|---|---|---|
1 | memberId | Integer |
@Required{groups=[ClientError]} | |
2 | memberName | string |
@Required | |
3 | memberAccount | string |
@Required | |
4 | birthdate | LocalDate |
@ValidateTypeFailure | |
5 | formalizedDate | LocalDate |
||
6 | memberstatus | CDef.Memberstatus |
{FML=Formalized, WDL=Withdrawal, PRV=Provisional} |
@Required |
7 | latestLoginDatetime | LocalDateTime |
||
8 | updateDatetime | LocalDateTime |
||
9 | previousstatus | CDef.Memberstatus |
{FML=Formalized, WDL=Withdrawal, PRV=Provisional} |
@Required{groups=[ClientError]} |
10 | versionNo | Long |
@Required{groups=[ClientError]} |
implementations: asHtml(path_Member_MemberEditHtml),asHtml(path_Error_showErrorsHtml),redirectById(MemberEditAction.class, member.getMemberId()
Execute Method: org.docksidestage.app.web.member.MemberEditAction#withdrawal()
annotations: @Execute
@author jflute
Form or Body: MemberEditForm@author jflute
No. | name | type | comment | annotations |
---|---|---|---|---|
1 | memberId | Integer |
@Required{groups=[ClientError]} | |
2 | memberName | string |
@Required | |
3 | memberAccount | string |
@Required | |
4 | birthdate | LocalDate |
@ValidateTypeFailure | |
5 | formalizedDate | LocalDate |
||
6 | memberstatus | CDef.Memberstatus |
{FML=Formalized, WDL=Withdrawal, PRV=Provisional} |
@Required |
7 | latestLoginDatetime | LocalDateTime |
||
8 | updateDatetime | LocalDateTime |
||
9 | previousstatus | CDef.Memberstatus |
{FML=Formalized, WDL=Withdrawal, PRV=Provisional} |
@Required{groups=[ClientError]} |
10 | versionNo | Long |
@Required{groups=[ClientError]} |
implementations: asHtml(path_Member_MemberEditHtml),redirect(MemberListAction.class)
Execute Method: org.docksidestage.app.web.member.MemberListAction#index()
annotations: @Execute
@author jflute
URL Parameter:No. | name | type | comment | annotations |
---|---|---|---|---|
1 | pageNumber | OptionalThing<Integer> |
@author jflute
No. | name | type | comment | annotations |
---|---|---|---|---|
1 | memberName | string |
@Length{max=5} | |
2 | memberstatus | CDef.Memberstatus |
{FML=Formalized, WDL=Withdrawal, PRV=Provisional} |
|
3 | purchaseProductName | string |
@Length{max=10} | |
4 | unpaid | boolean |
||
5 | formalizedFrom | LocalDate |
@ValidateTypeFailure | |
6 | formalizedTo | LocalDate |
@ValidateTypeFailure |
implementations: asHtml(path_Member_MemberListHtml),mappingToBean(member),asHtml(path_Member_MemberListHtml)
Execute Method: org.docksidestage.app.web.member.purchase.MemberPurchaseListAction#index()
annotations: @Execute
@author jflute
URL Parameter:No. | name | type | comment | annotations |
---|---|---|---|---|
1 | memberId | Integer |
||
2 | pageNumber | Integer |
Execute Method: org.docksidestage.app.web.mypage.MypageAction#index()
annotations: @Execute
@author jflute
Return as: HtmlResponseimplementations: asHtml(path_Mypage_MypageHtml)
Execute Method: org.docksidestage.app.web.product.ProductDetailAction#index()
annotations: @AllowAnyoneAccess @Execute
@author jflute
URL Parameter:No. | name | type | comment | annotations |
---|---|---|---|---|
1 | productId | Integer |
implementations: asHtml(path_Product_ProductDetailHtml)
Execute Method: org.docksidestage.app.web.product.ProductListAction#index()
annotations: @AllowAnyoneAccess @Execute
@author jflute
URL Parameter:No. | name | type | comment | annotations |
---|---|---|---|---|
1 | pageNumber | OptionalThing<Integer> |
@author jflute
No. | name | type | comment | annotations |
---|---|---|---|---|
1 | productName | string |
@Length{max=10} | |
2 | productstatus | CDef.Productstatus |
{ONs=OnsaleProduction, PsT=Productionstop, ssT=salestop} |
|
3 | purchaseMemberName | string |
@Length{max=5} |
implementations: asHtml(path_Product_ProductListHtml),mappingToBean(product),asHtml(path_Product_ProductListHtml)
Execute Method: org.docksidestage.app.web.profile.ProfileAction#index()
annotations: @Execute
@author jflute
@author deco
implementations: asHtml(path_Profile_ProfileHtml)
Execute Method: org.docksidestage.app.web.signin.signinAction#index()
annotations: @Execute
@author jflute
Return as: HtmlResponseimplementations: redirect(MypageAction.class),asHtml(path_signin_signinHtml)
Execute Method: org.docksidestage.app.web.signin.signinAction#signin()
annotations: @Execute
@author jflute
Form or Body: signinFormThe form of member's Login.
No. | name | type | comment | annotations |
---|---|---|---|---|
1 | account | string |
@Required | |
2 | password | string |
@Required | |
3 | rememberMe | boolean |
implementations: asHtml(path_signin_signinHtml),loginAssist.loginRedirect(createCredential(form),redirect(MypageAction.class)
Execute Method: org.docksidestage.app.web.signin.signinReminderAction#index()
annotations: @Execute
@author masaki.kamachi
@author jflute
implementations: asHtml(path_signin_signinReminderHtml)
Execute Method: org.docksidestage.app.web.signout.signoutAction#index()
annotations: @Execute
@author toshiaki.arai
@author jflute
implementations: redirect(signinAction.class)
Execute Method: org.docksidestage.app.web.signup.signupAction#index()
annotations: @AllowAnyoneAccess @Execute
@author annie_pocket
@author jflute
implementations: asHtml(path_signup_signupHtml)
Execute Method: org.docksidestage.app.web.signup.signupAction#signup()
annotations: @AllowAnyoneAccess @Execute
@author annie_pocket
@author jflute
@author annie_pocket
No. | name | type | comment | annotations |
---|---|---|---|---|
1 | memberName | string |
@Required | |
2 | memberAccount | string |
@Required | |
3 | password | string |
@Required | |
4 | reminderQuestion | string |
@Required | |
5 | reminderAnswer | string |
@Required |
implementations: asHtml(path_signup_signupHtml),redirect(MypageAction.class)
Execute Method: org.docksidestage.app.web.signup.signupAction#register()
annotations: @AllowAnyoneAccess @Execute
@author annie_pocket
@author jflute
No. | name | type | comment | annotations |
---|---|---|---|---|
1 | account | string |
||
2 | token | string |
implementations: redirect(signinAction.class)
Execute Method: org.docksidestage.app.web.startup.startupAction#index()
annotations: @AllowAnyoneAccess @Execute
@author iwamatsu0430
@author jflute
implementations: asHtml(path_startup_startupHtml)
Execute Method: org.docksidestage.app.web.startup.startupAction#create()
annotations: @AllowAnyoneAccess @Execute
@author iwamatsu0430
@author jflute
@author iwamatsu0430
No. | name | type | comment | annotations |
---|---|---|---|---|
1 | domain | string |
@Required | |
2 | serviceName | string |
@Required |
implementations: asHtml(path_startup_startupHtml),asHtml(path_startup_startupHtml)
Execute Method: org.docksidestage.app.web.withdrawal.WithdrawalAction#index()
annotations: @Execute
@author annie_pocket
@author jflute
implementations: asEntryHtml()
Execute Method: org.docksidestage.app.web.withdrawal.WithdrawalAction#confirm()
annotations: @Execute
@author annie_pocket
@author jflute
@author annie_pocket
No. | name | type | comment | annotations |
---|---|---|---|---|
1 | selectedReason | CDef.WithdrawalReason |
{sIT=sIT, PRD=PRD, FRT=FRT, OTH=OTH} |
|
2 | reasonInput | string |
@Length{max=3} |
implementations: asEntryHtml(),asConfirmHtml()
Execute Method: org.docksidestage.app.web.withdrawal.WithdrawalAction#done()
annotations: @Execute
@author annie_pocket
@author jflute
@author annie_pocket
No. | name | type | comment | annotations |
---|---|---|---|---|
1 | selectedReason | CDef.WithdrawalReason |
{sIT=sIT, PRD=PRD, FRT=FRT, OTH=OTH} |
|
2 | reasonInput | string |
@Length{max=3} |
implementations: asEntryHtml(),redirect(signoutAction.class)
No. | file | title | class | parameter count |
---|---|---|---|---|
1 | member/welcome_member.dfmail | New Member's Registration | WelcomeMemberPostcard | 4 |
Title: New Member's Registration
Class: org.docksidestage.mylasta.mail.WelcomeMemberPostcard
hasOptionPlusHtml: false
[New Member's Registration]
The member will be formalized after click.
No. | name | type |
---|---|---|
1 | memberName | string |
2 | domain | string |
3 | account | string |
4 | token | string |
Classification | Type | Top Comment | Definition | |||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
searchMemberstatus | implicit | Memberstatus for search condition |
|