Skip to content

Commit 8604deb

Browse files
committed
work in progress
1 parent bb1e0ee commit 8604deb

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/main/java/org/woehlke/simpleworklist/user/register/UserRegistrationController.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public UserRegistrationController(UserAccountService userAccountService, UserReg
3232
* Register as new user by entering the email-address which is
3333
* unique and the login identifier.
3434
*
35-
* @param model
35+
* @param model Model
3636
* @return Formular for entering Email-Address for Registration
3737
*/
3838
@RequestMapping(path = "", method = RequestMethod.GET)
@@ -46,9 +46,9 @@ public final String registerGet(Model model) {
4646
/**
4747
* Register new User: Store the Request and send Email for Verification.
4848
*
49-
* @param userRegistrationForm
50-
* @param result
51-
* @param model
49+
* @param userRegistrationForm UserRegistrationForm
50+
* @param result BindingResult
51+
* @param model Model
5252
* @return info page at success or return to form with error messages.
5353
*/
5454
@RequestMapping(path = "", method = RequestMethod.POST)
@@ -88,8 +88,8 @@ public final String registerPost(
8888
/**
8989
* Register as new user: The URL in the Verification Email clicked by User.
9090
*
91-
* @param confirmId
92-
* @param model
91+
* @param confirmId String
92+
* @param model Model
9393
* @return Formular for Entering Account Task or Error Messages.
9494
*/
9595
@RequestMapping(path = "/confirm/{confirmId}", method = RequestMethod.GET)
@@ -114,10 +114,10 @@ public final String registerConfirmGet(
114114
/**
115115
* Saving Account Task from Formular and forward to login page.
116116
*
117-
* @param userAccountForm
118-
* @param result
119-
* @param confirmId
120-
* @param model
117+
* @param userAccountForm UserAccountForm
118+
* @param result BindingResult
119+
* @param confirmId String
120+
* @param model Model
121121
* @return login page at success or page with error messages.
122122
*/
123123
@RequestMapping(path = "/confirm/{confirmId}", method = RequestMethod.POST)

0 commit comments

Comments
 (0)