Package org.alfresco.rest.api
Interface Queries
-
- All Known Implementing Classes:
QueriesImpl
public interface QueriesQueries API- Author:
- janv, Alan Davis
-
-
Field Summary
Fields Modifier and Type Field Description static intMIN_TERM_LENGTH_NODESstatic intMIN_TERM_LENGTH_PEOPLEstatic intMIN_TERM_LENGTH_SITESstatic StringPARAM_CREATEDATstatic StringPARAM_FIELDSstatic StringPARAM_FIRSTNAMEstatic StringPARAM_INCLUDEstatic StringPARAM_LASTNAMEstatic StringPARAM_MODIFIEDATstatic StringPARAM_NAMEstatic StringPARAM_NODE_TYPEstatic StringPARAM_ORDERBYstatic StringPARAM_PERSON_IDstatic StringPARAM_ROOT_NODE_IDstatic StringPARAM_SITE_DESCRIPTIONstatic StringPARAM_SITE_IDstatic StringPARAM_SITE_TITLEstatic StringPARAM_TERM
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CollectionWithPagingInfo<Node>findNodes(Parameters parameters)Find NodesCollectionWithPagingInfo<Person>findPeople(Parameters parameters)Find PeopleCollectionWithPagingInfo<Site>findSites(Parameters parameters)Find Sites
-
-
-
Field Detail
-
PARAM_TERM
static final String PARAM_TERM
- See Also:
- Constant Field Values
-
PARAM_ORDERBY
static final String PARAM_ORDERBY
- See Also:
- Constant Field Values
-
PARAM_FIELDS
static final String PARAM_FIELDS
- See Also:
- Constant Field Values
-
PARAM_INCLUDE
static final String PARAM_INCLUDE
- See Also:
- Constant Field Values
-
PARAM_ROOT_NODE_ID
static final String PARAM_ROOT_NODE_ID
- See Also:
- Constant Field Values
-
PARAM_NODE_TYPE
static final String PARAM_NODE_TYPE
- See Also:
- Constant Field Values
-
PARAM_NAME
static final String PARAM_NAME
- See Also:
- Constant Field Values
-
PARAM_CREATEDAT
static final String PARAM_CREATEDAT
- See Also:
- Constant Field Values
-
PARAM_MODIFIEDAT
static final String PARAM_MODIFIEDAT
- See Also:
- Constant Field Values
-
MIN_TERM_LENGTH_NODES
static final int MIN_TERM_LENGTH_NODES
- See Also:
- Constant Field Values
-
PARAM_PERSON_ID
static final String PARAM_PERSON_ID
- See Also:
- Constant Field Values
-
PARAM_FIRSTNAME
static final String PARAM_FIRSTNAME
-
PARAM_LASTNAME
static final String PARAM_LASTNAME
-
MIN_TERM_LENGTH_PEOPLE
static final int MIN_TERM_LENGTH_PEOPLE
- See Also:
- Constant Field Values
-
PARAM_SITE_ID
static final String PARAM_SITE_ID
- See Also:
- Constant Field Values
-
PARAM_SITE_TITLE
static final String PARAM_SITE_TITLE
- See Also:
- Constant Field Values
-
PARAM_SITE_DESCRIPTION
static final String PARAM_SITE_DESCRIPTION
- See Also:
- Constant Field Values
-
MIN_TERM_LENGTH_SITES
static final int MIN_TERM_LENGTH_SITES
- See Also:
- Constant Field Values
-
-
Method Detail
-
findNodes
CollectionWithPagingInfo<Node> findNodes(Parameters parameters)
Find Nodes- Parameters:
parameters- theParametersobject to get the parameters passed into the request- Returns:
- the search query results
-
findPeople
CollectionWithPagingInfo<Person> findPeople(Parameters parameters)
Find People- Parameters:
parameters- theParametersobject to get the parameters passed into the request- Returns:
- the search query results
-
findSites
CollectionWithPagingInfo<Site> findSites(Parameters parameters)
Find Sites- Parameters:
parameters- theParametersobject to get the parameters passed into the request- Returns:
- the search query results
-
-