|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.jalios.jcms.context.JcmsContext com.jalios.jcms.context.JcmsJspContext com.jalios.jcms.handler.JcmsFormHandler com.jalios.jcms.handler.AbstractQueryHandler<Group> com.jalios.jcms.handler.GroupQueryHandler
public class GroupQueryHandler
Holder class and form handler of all parameters to be used for a query of groups.
Nested Class Summary |
---|
Nested classes/interfaces inherited from class com.jalios.jcms.handler.AbstractQueryHandler |
---|
AbstractQueryHandler.HiddenParamQhPrinter, AbstractQueryHandler.QueryHandlerPrinter, AbstractQueryHandler.QueryStringQhPrinter |
Field Summary | |
---|---|
static String |
REVISION
|
Fields inherited from class com.jalios.jcms.handler.JcmsFormHandler |
---|
contextMap, editFieldSet, noRedirect, noSendRedirect, popupEdition, redirect, redirectOnClosePopup, workspaceForced |
Fields inherited from class com.jalios.jcms.context.JcmsJspContext |
---|
AJAX_REQUEST_ATTRIBUTES, BODY_HEADER, CSS_HEADER, cssboMap, cssfoMap, CUSTOM_HEADER, editIcon, HTTPEQUIV_HEADER, httpequivMap, HTTPNAME_HEADER, httpnameMap, initEditIcon, JAVASCRIPT_CODE_SET_ATTRIBUTE, JAVASCRIPT_SET_ATTRIBUTE, JS_HEADER, jsboMap, jsboSet, jsfoMap, jsfoSet, out, pageContext, SHOW_EDIT_ICON, STYLE_HEADER |
Fields inherited from class com.jalios.jcms.context.JcmsContext |
---|
browser, caddy, channel, inFO, initDone, initWorkspace, isAdmin, isAjaxRequest, isDBMember, isDebug, isLogged, loggedMember, request, response, userLang, userLocale, workspace |
Fields inherited from interface com.jalios.util.JaliosConstants |
---|
CRLF, MILLIS_IN_ONE_DAY, MILLIS_IN_ONE_HOUR, MILLIS_IN_ONE_MINUTE, MILLIS_IN_ONE_MONTH, MILLIS_IN_ONE_SECOND, MILLIS_IN_ONE_WEEK, MILLIS_IN_ONE_YEAR |
Constructor Summary | |
---|---|
GroupQueryHandler()
Constructs a new empty GroupQueryHandler with default option. |
|
GroupQueryHandler(String queryString)
Constructs a new GroupQueryHandler by parsing the specified query string. |
|
GroupQueryHandler(String queryString,
javax.servlet.http.HttpServletRequest request)
Constructs a new GroupQueryHandler by parsing the
specified query string and using informations available
from the specified request (logged member, user language, etc). |
Method Summary | |
---|---|
String |
getGid()
Retrieve the parent group id used by this Query |
String |
getGroupFilter()
Retrieve the current group filter being used by this GroupQueryHandler. |
String |
getGroupText()
Retrieves the text being search in this query |
protected org.apache.log4j.Logger |
getLogger()
|
Group |
getParentGroup()
Retrieves the parent group used by this query, as specified using setGid(String) . |
Workspace |
getRefinedWorkspace()
Retrieves the Workspace being used to filter groups in this Query. |
Set<Group> |
getResultSet()
Return results of a query done using this GroupQueryHandler . |
Set<Group> |
getResultSet(Comparator<Group> comparator)
Return results of a query done using this GroupQueryHandler . |
protected void |
parseQueryStringParam(String key,
String[] values)
Method to be implemented by subclass to decode parameter from queryString. |
protected String |
printParams(AbstractQueryHandler.QueryHandlerPrinter printer)
Print current QueryHandler params using specified QueryHandlerPrinter. |
void |
setGid(String parentGid)
Sets the parent group id to be used during query |
void |
setGroupFilter(String groupFilter)
Define the groupFilter to use in this GroupQueryHandler. |
void |
setGroupText(String groupText)
Set the text to search in Group |
String |
toString()
|
Methods inherited from class com.jalios.jcms.handler.AbstractQueryHandler |
---|
getAttribute, getAttributeMap, getDataSet, getHiddenParams, getQueryString, init, parseQueryString, removeAttribute, setAttribute, setDataSet |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final String REVISION
Constructor Detail |
---|
public GroupQueryHandler()
GroupQueryHandler
with default option.
public GroupQueryHandler(String queryString)
GroupQueryHandler
by parsing the specified query string.
See GroupQueryHandler(String, HttpServletRequest)
for a list of the
decoded parameters.
queryString
- a query String consisting of parameters (key=value) to be set in this handler.
"groupText=welcome&gid=j_42"
public GroupQueryHandler(String queryString, javax.servlet.http.HttpServletRequest request)
GroupQueryHandler
by parsing the
specified query string and using informations available
from the specified request (logged member, user language, etc).
The following parameters (and only those listed here) will be automatically decoded from the specified query string. Other parameters should be set using apropriate setters.
"groupFilter"
: setGroupFilter(String)
"groupText"
: setGroupText(String)
"gid"
: setGid(String)
queryString
- a query String consisting of parameters (key=value) to be set in this handler.
"groupText=welcome&gid=j_42"
request
- the HttpServletRequest
to use to
retrieve loggedMember
, userLang
,
userLocale
that will be used by this handler,
ignored if null.Method Detail |
---|
protected org.apache.log4j.Logger getLogger()
getLogger
in class AbstractQueryHandler<Group>
protected void parseQueryStringParam(String key, String[] values)
AbstractQueryHandler
parseQueryStringParam
in class AbstractQueryHandler<Group>
key
- the parameter name, never null nor empty.values
- the parameter values, NEVER NULL NOR EMPTY.
You can safely invoke paramValues[0]
protected String printParams(AbstractQueryHandler.QueryHandlerPrinter printer)
printParams
in class AbstractQueryHandler<Group>
printer
- a QueryHandlerPrinter to use
public String toString()
toString
in class Object
public Set<Group> getResultSet()
GroupQueryHandler
.
Warning: This method process the query each time it is invoked, therefore do not call it multiple times if you don't need it.
Set
containing all Group
found by this query.public Set<Group> getResultSet(Comparator<Group> comparator)
GroupQueryHandler
.
Warning: This method process the query each time it is invoked, therefore do not call it multiple times if you don't need it.
comparator
- the optionnal Comparator to sort the return collection
Set
containing all Group
found by this query,
sorted using specified comparator if any.public String getGroupFilter()
Group.WorkspaceSelector
public void setGroupFilter(String groupFilter)
groupFilter
- a string indicating the filter being applied,
see constructor Group.WorkspaceSelector for more information on possible valuespublic Workspace getRefinedWorkspace()
public String getGroupText()
public void setGroupText(String groupText)
groupText
- any string to look for in Group's namepublic String getGid()
public void setGid(String parentGid)
parentGid
- an id of Group or null to disable filter on parent Grouppublic Group getParentGroup()
setGid(String)
.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |