|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface ISISSearchAPI
The command API implementation of the search commands.
This implementation can be accessed directly via the ICommandFacade class, using the API
name search, with the following syntax:
ISISSearchAPI commandAPI =
(ISISSearchAPI)m_commandFacade.getCommandAPI ("search", m_commandFacade.getCommandTypeForName ("fixed"));
| Field Summary | |
|---|---|
static java.lang.String |
API_CATEGORY
Category for this Command API |
| Method Summary | |
|---|---|
ISISSearchResponse |
adhocSearch(ISISContext SISContext,
ISISAdhocQuery adhocQuery,
int pageSize)
This allows the client to execute an ad-hoc search against the IBPM system. |
ISISSearchResponse |
continueSearch(ISISContext SISContext,
ISISSearchCookie searchCookie)
Continues a previously started search. |
ISISSearchResponse |
continueSearch(ISISContext SISContext,
java.lang.String searchConnectionID)
Continues a previously started search. |
ISISAdhocQuery |
getApplicationQuery(ISISContext SISContext,
ISISApplication application)
This allows the client to obtain a list of prompts for the specified Application. |
ISISAdhocQuery |
getApplicationQuery(ISISContext SISContext,
ISISApplication application,
int queryType)
This allows the client to obtain a list of prompts for the specified Application. |
ISISAdhocQuery |
getApplicationQuery(ISISContext SISContext,
java.lang.String applicationName)
This allows the client to obtain a list of prompts for the specified Application. |
ISISAdhocQuery |
getApplicationQuery(ISISContext SISContext,
java.lang.String applicationName,
int queryType)
This allows the client to obtain a list of prompts for the specified Application. |
java.util.List |
getSavedSearchNames(ISISContext SISContext)
Returns a list of predefined queries. |
java.util.List |
getSavedSearchPrompts(ISISContext SISContext,
ISISSavedSearch savedSearch)
Returns a list of prompts that are associated with the specified saved search. |
java.util.List |
getSavedSearchPrompts(ISISContext SISContext,
java.lang.String searchName)
Returns a list of prompts that are associated with the specified saved search. |
ISISApplication |
getSearchableApplication(ISISContext SISContext,
java.lang.String applicationName)
Retrieves a list of application types that can be used in ad hoc searches. |
ISISApplicationResponse |
getSearchableApplications(ISISContext SISContext)
Retrieves a list of application types that can be used in ad hoc searches. |
ISISContent |
lookup(ISISContext SISContext,
ISISID identifier)
Looks up a piece of fixed content by identifier or a combination of application name and row |
ISISContent |
lookup(ISISContext SISContext,
java.lang.String applicationName,
java.lang.String rowIdentifier)
Looks up a piece of fixed content by identifier or a combination of application name and row |
ISISSearchResponse |
search(ISISContext SISContext,
java.lang.String searchName)
Performs the specified search for fixed content. |
ISISSearchResponse |
search(ISISContext SISContext,
java.lang.String searchName,
int pageSize)
Performs the specified search for fixed content. |
ISISSearchResponse |
search(ISISContext SISContext,
java.lang.String searchName,
java.util.List searchPrompts,
int pageSize)
Performs the specified search for fixed content. |
java.lang.Boolean |
stopSearch(ISISContext SISContext,
ISISSearchCookie searchCookie)
Stops a previously started search. |
| Field Detail |
|---|
static final java.lang.String API_CATEGORY
| Method Detail |
|---|
ISISSearchResponse adhocSearch(ISISContext SISContext,
ISISAdhocQuery adhocQuery,
int pageSize)
throws CommandException
SISContext - the context object representing the current useradhocQuery - The parameters of the adhoc search.pageSize - The number of results to return.
CommandException
ISISSearchResponse continueSearch(ISISContext SISContext,
ISISSearchCookie searchCookie)
throws CommandException
SISContext - the context object representing the current usersearchCookie - The identifier for the started search.
CommandException
ISISSearchResponse continueSearch(ISISContext SISContext,
java.lang.String searchConnectionID)
throws CommandException
SISContext - the context object representing the current usersearchConnectionID - The identifier for the started search.
CommandException
ISISAdhocQuery getApplicationQuery(ISISContext SISContext,
ISISApplication application)
throws CommandException
SISContext - the context object representing the current userapplication - The application to retrieve prompts for.
CommandException
ISISAdhocQuery getApplicationQuery(ISISContext SISContext,
ISISApplication application,
int queryType)
throws CommandException
SISContext - the context object representing the current userapplication - The application to retrieve prompts for.queryType - The type of prompts to receive prompts for, ISISAdhocQuery.ALL ISISAdhocQuery.DM ISISAdhocQuery.FIELD ISISAdhocQuery.SYSTEM ISISAdhocQuery.FULLTEXT ISISAdhocQuery.UNKNOWN
CommandException
ISISAdhocQuery getApplicationQuery(ISISContext SISContext,
java.lang.String applicationName,
int queryType)
throws CommandException
SISContext - the context object representing the current userapplicationName - The application name to retrieve prompts for.queryType - The type of prompts to receive prompts for, ISISAdhocQuery.ALL ISISAdhocQuery.DM ISISAdhocQuery.FIELD ISISAdhocQuery.SYSTEM ISISAdhocQuery.FULLTEXT ISISAdhocQuery.UNKNOWN
CommandException
ISISAdhocQuery getApplicationQuery(ISISContext SISContext,
java.lang.String applicationName)
throws CommandException
SISContext - the context object representing the current userapplicationName - The application name to retrieve prompts for.
CommandException
ISISApplication getSearchableApplication(ISISContext SISContext,
java.lang.String applicationName)
throws CommandException
SISContext - the context object representing the current userapplicationName - The name of the application to retrieve.
CommandException
ISISApplicationResponse getSearchableApplications(ISISContext SISContext)
throws CommandException
SISContext - the context object representing the current user
CommandException
ISISContent lookup(ISISContext SISContext,
ISISID identifier)
throws CommandException
SISContext - the context object representing the current useridentifier - The identifier.
CommandException
ISISContent lookup(ISISContext SISContext,
java.lang.String applicationName,
java.lang.String rowIdentifier)
throws CommandException
SISContext - the context object representing the current userapplicationName - The application name.rowIdentifier - The row identifier.
CommandException
java.util.List getSavedSearchNames(ISISContext SISContext)
throws CommandException
SISContext - the context object representing the current user
CommandException
java.util.List getSavedSearchPrompts(ISISContext SISContext,
java.lang.String searchName)
throws CommandException
ICISSearchPrompt
SISContext - the context object representing the current usersearchName - The identifier of the saved search.
CommandException
java.util.List getSavedSearchPrompts(ISISContext SISContext,
ISISSavedSearch savedSearch)
throws CommandException
ICISSearchPrompt
SISContext - the context object representing the current usersavedSearch - The identifier of the saved search.
CommandException
ISISSearchResponse search(ISISContext SISContext,
java.lang.String searchName)
throws CommandException
SISContext - the context object representing the current usersearchName - The saved search name.
CommandException
ISISSearchResponse search(ISISContext SISContext,
java.lang.String searchName,
int pageSize)
throws CommandException
SISContext - the context object representing the current usersearchName - The saved search name.pageSize - The number of results to return.
CommandException
ISISSearchResponse search(ISISContext SISContext,
java.lang.String searchName,
java.util.List searchPrompts,
int pageSize)
throws CommandException
SISContext - the context object representing the current usersearchName - The saved search name.searchPrompts - ser specified input for this search.pageSize - The number of results to return.
CommandException
java.lang.Boolean stopSearch(ISISContext SISContext,
ISISSearchCookie searchCookie)
throws CommandException
SISContext - the context object representing the current usersearchCookie - The identifier for the started search.
CommandException
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||