Package org.alfresco.rest.api
Interface Queries
-
- All Known Implementing Classes:
QueriesImpl
public interface Queries
Queries API- Author:
- janv, Alan Davis
-
-
Field Summary
Fields Modifier and Type Field Description static int
MIN_TERM_LENGTH_NODES
static int
MIN_TERM_LENGTH_PEOPLE
static int
MIN_TERM_LENGTH_SITES
static String
PARAM_CREATEDAT
static String
PARAM_FIELDS
static String
PARAM_FIRSTNAME
static String
PARAM_INCLUDE
static String
PARAM_LASTNAME
static String
PARAM_MODIFIEDAT
static String
PARAM_NAME
static String
PARAM_NODE_TYPE
static String
PARAM_ORDERBY
static String
PARAM_PERSON_ID
static String
PARAM_ROOT_NODE_ID
static String
PARAM_SITE_DESCRIPTION
static String
PARAM_SITE_ID
static String
PARAM_SITE_TITLE
static String
PARAM_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
- theParameters
object to get the parameters passed into the request- Returns:
- the search query results
-
findPeople
CollectionWithPagingInfo<Person> findPeople(Parameters parameters)
Find People- Parameters:
parameters
- theParameters
object to get the parameters passed into the request- Returns:
- the search query results
-
findSites
CollectionWithPagingInfo<Site> findSites(Parameters parameters)
Find Sites- Parameters:
parameters
- theParameters
object to get the parameters passed into the request- Returns:
- the search query results
-
-