|
||||||||||
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<ArchivedPublication> com.jalios.jcms.archive.ArchiveQueryHandler
public class ArchiveQueryHandler
Holder class and form handler of all parameters to be used for a query of archive.
Nested Class Summary |
---|
Nested classes/interfaces inherited from class com.jalios.jcms.handler.AbstractQueryHandler |
---|
AbstractQueryHandler.HiddenParamQhPrinter, AbstractQueryHandler.QueryHandlerPrinter, AbstractQueryHandler.QueryStringQhPrinter |
Field Summary | |
---|---|
protected String |
mode
|
protected short |
originalType
|
protected boolean |
pagerAll
|
protected int |
pageSize
|
protected int |
pageStart
|
protected boolean |
reverse
|
static String |
REVISION
|
protected String |
sort
|
protected String |
text
|
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 | |
---|---|
ArchiveQueryHandler()
Constructs a new empty ArchiveQueryHandler with default option. |
|
ArchiveQueryHandler(String queryString)
Constructs a new ArchiveQueryHandler by parsing the specified query string. |
|
ArchiveQueryHandler(String queryString,
javax.servlet.http.HttpServletRequest request)
Constructs a new ArchiveQueryHandler by parsing the
specified query string and using informations available
from the specified request (logged member, user language, etc). |
Method Summary | |
---|---|
protected org.apache.log4j.Logger |
getLogger()
|
String |
getMode()
|
String |
getOriginalType()
Retrieves the type of archive being search. |
PageResult<ArchivedPublication> |
getPageResult()
Returns a new PageResult of archive for the current settings of this handler. |
Workspace |
getRefinedWorkspace()
Retrieves the Workspace that archives must belong to in order to be found. |
String |
getText()
Retrieves the text being search in this query |
protected void |
parseQueryStringParam(String key,
String[] values)
Method to be implemented by subclass to decode parameter from queryString. |
protected String |
printParams(AbstractQueryHandler.QueryHandlerPrinter printer)
Method to be implemented by subclass to provide params printing in query or hidden input format. Typical implementation : |
void |
setMode(String mode)
|
void |
setOriginalType(String originalTypeStr)
Set the type of archive being search. |
void |
setOriginalTypeShort(short originalType)
Set the type of archive being search. |
void |
setPagerAll(boolean pagerAll)
|
void |
setPageSize(int pageSize)
|
void |
setReverse(boolean reverse)
|
void |
setSort(String sort)
|
void |
setStart(int start)
|
void |
setText(String text)
Set the text to search in Archive |
void |
setWrkspc(String wsId)
Sets the Workspace that archive must belong to in order to be found. |
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
protected short originalType
protected String text
protected String mode
protected String sort
protected boolean reverse
protected int pageStart
protected int pageSize
protected boolean pagerAll
Constructor Detail |
---|
public ArchiveQueryHandler()
ArchiveQueryHandler
with default option.
public ArchiveQueryHandler(String queryString)
ArchiveQueryHandler
by parsing the specified query string.
See ArchiveQueryHandler(String, HttpServletRequest)
for a list of the
decoded parameters.
queryString
- a query String consisting of parameters (key=value) to be set in this handler.
"text=welcome&ws=j_42"
public ArchiveQueryHandler(String queryString, javax.servlet.http.HttpServletRequest request)
ArchiveQueryHandler
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.
"text"
: setText(String)
"originalType"
: setOriginalType(String)
"wrkspc"
: setWrkspc(String)
queryString
- a query String consisting of parameters (key=value) to be set in this handler.
"text=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<ArchivedPublication>
protected void parseQueryStringParam(String key, String[] values)
AbstractQueryHandler
parseQueryStringParam
in class AbstractQueryHandler<ArchivedPublication>
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)
AbstractQueryHandler
protected String printParams(QueryHandlerPrinter printer) { printer.printParam("foo", getFoo()); printer.printParam("bar", getBar()); return printer.toString(); }
printParams
in class AbstractQueryHandler<ArchivedPublication>
printer
- a QueryHandlerPrinter to use
public String toString()
toString
in class Object
public PageResult<ArchivedPublication> getPageResult()
public String getText()
public void setText(String text)
text
- any string to look for in Archivepublic void setMode(String mode)
public String getMode()
public String getOriginalType()
public void setOriginalType(String originalTypeStr)
originalTypeStr
- "content" or "form"public void setOriginalTypeShort(short originalType)
originalType
- -1 for all archive, otherwise use ArchivedPublication.TYPE_CONTENT or ArchivedPublication.TYPE_FORMpublic void setWrkspc(String wsId)
wsId
- an id of Workspace or null to disable filter on Archive's Workspacepublic Workspace getRefinedWorkspace()
public void setSort(String sort)
public void setReverse(boolean reverse)
public void setStart(int start)
public void setPageSize(int pageSize)
public void setPagerAll(boolean pagerAll)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |