Update of
/var/cvs/contributions/CMSContainer_Modules/community/src/java/com/finalist/cmsc/community/forms
In directory
james.mmbase.org:/tmp/cvs-serv19962/community/src/java/com/finalist/cmsc/community/forms
Modified Files:
SearchConditionalUserAction.java
Log Message:
CMSC-899(Format according to checkstyle file)
See also:
http://cvs.mmbase.org/viewcvs/contributions/CMSContainer_Modules/community/src/java/com/finalist/cmsc/community/forms
See also: http://www.mmbase.org/jira/browse/CMSC-899
Index: SearchConditionalUserAction.java
===================================================================
RCS file:
/var/cvs/contributions/CMSContainer_Modules/community/src/java/com/finalist/cmsc/community/forms/SearchConditionalUserAction.java,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -b -r1.18 -r1.19
--- SearchConditionalUserAction.java 23 Sep 2008 10:07:29 -0000 1.18
+++ SearchConditionalUserAction.java 25 Sep 2008 06:56:13 -0000 1.19
@@ -37,14 +37,23 @@
private AuthenticationService authenticationService;
private AuthorityService authorityService;
+ /**
+ * @param personService need personService
+ */
public void setPersonService(PersonService personService) {
this.personService = personService;
}
+ /**
+ * @param authenticationService need it
+ */
public void setAuthenticationService(AuthenticationService
authenticationService) {
this.authenticationService = authenticationService;
}
+ /**
+ * @param authorityService need it
+ */
public void setAuthorityService(AuthorityService authorityService) {
this.authorityService = authorityService;
}
@@ -67,12 +76,12 @@
/**
* Search groups according to some search conditions.
- * @param actionMapping
- * @param actionForm
- * @param request
- * @param httpServletResponse
- * @return
- * @throws Exception
+ * @param actionMapping goto jsp
+ * @param actionForm get paramate
+ * @param request setSharedAttributes
+ * @param httpServletResponse do nothing
+ * @return ActionForward chose jsp
+ * @throws Exception throw exception
*/
public ActionForward listGroupMembers(ActionMapping actionMapping,
ActionForm actionForm,
HttpServletRequest request, HttpServletResponse httpServletResponse)
throws Exception {
@@ -113,19 +122,19 @@
Authentication authentication = (Authentication) iter.next();
userNames.add(authentication.getUserId());
}
- String TransFormNames = StringUtils.join(userNames, "','");
- map.put("strict", TransFormNames);
+ String transFormNames = StringUtils.join(userNames, "','");
+ map.put("strict", transFormNames);
}
}
/**
* searching for newsletter subscriber candidate list
- * @param actionMapping
- * @param actionForm
- * @param request
- * @param httpServletResponse
- * @return showing newsletter subscriber candidate list
- * @throws Exception
+ * @param actionMapping goto jsp
+ * @param actionForm get paramate
+ * @param request setSharedAttributes
+ * @param httpServletResponse do nothing
+ * @return ActionForward chose jsp
+ * @throws Exception throw exception
*/
public ActionForward searchCandidateSubscriber(ActionMapping actionMapping,
ActionForm actionForm,
HttpServletRequest request, HttpServletResponse httpServletResponse)
throws Exception {
_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs