Uses of Class
org.alfresco.rest.framework.resource.parameters.Paging
-
-
Uses of Paging in org.alfresco.rest.api
Methods in org.alfresco.rest.api with parameters of type Paging Modifier and Type Method Description CollectionWithPagingInfo<AuditApp>
Audit. getAuditApps(Paging paging)
Lists audit applicationsCollectionWithPagingInfo<Comment>
Comments. getComments(java.lang.String nodeId, Paging paging, java.util.List<java.lang.String> include)
CollectionWithPagingInfo<PersonNetwork>
Networks. getNetworks(java.lang.String personId, Paging paging)
CollectionWithPagingInfo<NodeRating>
NodeRatings. getNodeRatings(java.lang.String nodeId, Paging paging)
CollectionWithPagingInfo<SiteMembershipRequest>
SiteMembershipRequests. getPagedSiteMembershipRequests(java.lang.String inviteeId, Paging paging)
Get a paged list of site membership requests for inviteeId.CollectionWithPagingInfo<Preference>
Preferences. getPreferences(java.lang.String personId, Paging paging)
org.alfresco.query.PagingResults<SiteContainer>
Sites. getSiteContainers(java.lang.String siteShortName, Paging paging)
-
Uses of Paging in org.alfresco.rest.api.impl
Methods in org.alfresco.rest.api.impl with parameters of type Paging Modifier and Type Method Description CollectionWithPagingInfo<AuditApp>
AuditImpl. getAuditApps(Paging paging)
CollectionWithPagingInfo<Comment>
CommentsImpl. getComments(java.lang.String nodeId, Paging paging, java.util.List<java.lang.String> include)
CollectionWithPagingInfo<PersonNetwork>
NetworksImpl. getNetworks(java.lang.String personId, Paging paging)
CollectionWithPagingInfo<NodeRating>
NodeRatingsImpl. getNodeRatings(java.lang.String nodeId, Paging paging)
CollectionWithPagingInfo<SiteMembershipRequest>
SiteMembershipRequestsImpl. getPagedSiteMembershipRequests(java.lang.String personId, Paging paging)
static org.alfresco.query.PagingRequest
Util. getPagingRequest(Paging paging)
CollectionWithPagingInfo<Preference>
PreferencesImpl. getPreferences(java.lang.String personId, Paging paging)
org.alfresco.query.PagingResults<SiteContainer>
SitesImpl. getSiteContainers(java.lang.String siteId, Paging paging)
protected static <T> CollectionWithPagingInfo<T>
QueriesImpl.AbstractQuery. listPage(java.util.List<T> result, Paging paging)
static <T> org.alfresco.query.PagingResults<T>
Util. wrapPagingResults(Paging paging, java.util.Collection<T> result)
-
Uses of Paging in org.alfresco.rest.api.nodes
Methods in org.alfresco.rest.api.nodes with parameters of type Paging Modifier and Type Method Description protected CollectionWithPagingInfo
AbstractNodeRelation. listPage(java.util.List result, Paging paging)
-
Uses of Paging in org.alfresco.rest.api.search
Methods in org.alfresco.rest.api.search with parameters of type Paging Modifier and Type Method Description protected Params
SearchApiWebscript. getParams(org.springframework.extensions.webscripts.WebScriptRequest webScriptRequest, java.util.List<java.lang.String> fields, java.util.List<java.lang.String> include, Paging paging)
Gets the Params object, parameters come from the SearchQuery json not the request -
Uses of Paging in org.alfresco.rest.api.search.impl
Methods in org.alfresco.rest.api.search.impl with parameters of type Paging Modifier and Type Method Description void
SearchMapper. fromPaging(org.alfresco.service.cmr.search.SearchParameters sp, Paging paging)
SearchParameters from the Paging object -
Uses of Paging in org.alfresco.rest.api.search.model
Methods in org.alfresco.rest.api.search.model that return Paging Modifier and Type Method Description Paging
SearchQuery. getPaging()
Constructors in org.alfresco.rest.api.search.model with parameters of type Paging Constructor Description SearchQuery(Query query, Paging paging, java.lang.Boolean includeRequest, java.util.List<java.lang.String> include, java.util.List<java.lang.String> fields, java.util.List<SortDef> sort, java.util.List<Template> templates, Default defaults, java.util.List<FilterQuery> filterQueries, FacetFields facetFields, java.util.List<FacetQuery> facetQueries, Spelling spellcheck, Scope scope, Limits limits, org.alfresco.service.cmr.search.GeneralHighlightParameters highlight, org.alfresco.service.cmr.search.IntervalParameters facetIntervals, java.util.List<Pivot> pivots, java.util.List<org.alfresco.service.cmr.search.StatsRequestParameters> stats, java.util.List<org.alfresco.service.cmr.search.RangeParameters> ranges, Localization localization, org.alfresco.service.cmr.search.FacetFormat facetFormat)
-
Uses of Paging in org.alfresco.rest.framework.resource
Methods in org.alfresco.rest.framework.resource that return Paging Modifier and Type Method Description Paging
SerializablePagedCollection. getPaging()
The requested paging parameters set by the client -
Uses of Paging in org.alfresco.rest.framework.resource.parameters
Fields in org.alfresco.rest.framework.resource.parameters declared as Paging Modifier and Type Field Description static Paging
Paging. DEFAULT
Methods in org.alfresco.rest.framework.resource.parameters that return Paging Modifier and Type Method Description Paging
CollectionWithPagingInfo. getPaging()
The requested paging parameters set by the clientPaging
Parameters. getPaging()
Returns a representation of the Paging of collections of resources, with skip count and max items.Paging
Params. getPaging()
static Paging
Paging. valueOf(int skipCount, int maxItems)
Methods in org.alfresco.rest.framework.resource.parameters with parameters of type Paging Modifier and Type Method Description static <T> CollectionWithPagingInfo<T>
CollectionWithPagingInfo. asPaged(Paging paging, java.util.Collection<T> aCollection)
Constructs a new CollectionWithPagingInfo.static <T> CollectionWithPagingInfo<T>
CollectionWithPagingInfo. asPaged(Paging paging, java.util.Collection<T> aCollection, boolean hasMoreItems, java.lang.Integer totalItems)
Constructs a new CollectionWithPagingInfo.static <T> CollectionWithPagingInfo<T>
CollectionWithPagingInfo. asPaged(Paging paging, java.util.Collection<T> aCollection, boolean hasMoreItems, java.lang.Integer totalItems, java.lang.Object sourceEntity)
Constructs a new CollectionWithPagingInfo.static <T> CollectionWithPagingInfo<T>
CollectionWithPagingInfo. asPaged(Paging paging, java.util.Collection<T> aCollection, boolean hasMoreItems, java.lang.Integer totalItems, java.lang.Object sourceEntity, SearchContext context)
Constructs a new CollectionWithPagingInfo.Constructors in org.alfresco.rest.framework.resource.parameters with parameters of type Paging Constructor Description CollectionWithPagingInfo(java.util.Collection<T> collection, Paging paging, boolean hasMoreItems, java.lang.Integer totalItems, java.lang.Object sourceEntity, SearchContext context)
Constructs a new CollectionWithPagingInfo.RecognizedParams(java.util.Map<java.lang.String,java.lang.String[]> requestParameters, Paging paging, BeanPropertiesFilter filter, java.util.Map<java.lang.String,BeanPropertiesFilter> relationshipFilter, java.util.List<java.lang.String> include, java.util.List<java.lang.String> select, Query query, java.util.List<SortColumn> sorting, boolean includeSource)
-
Uses of Paging in org.alfresco.rest.framework.tools
Methods in org.alfresco.rest.framework.tools that return Paging Modifier and Type Method Description default Paging
RecognizedParamsExtractor. findPaging(org.springframework.extensions.webscripts.WebScriptRequest req)
Find paging setings based on the request parameters.default Paging
RecognizedParamsExtractor. getPaging(java.lang.String skip, java.lang.String maxItems)
Gets the default paging object -
Uses of Paging in org.alfresco.rest.workflow.api
Methods in org.alfresco.rest.workflow.api with parameters of type Paging Modifier and Type Method Description CollectionWithPagingInfo<Deployment>
Deployments. getDeployments(Paging paging)
CollectionWithPagingInfo<Item>
Processes. getItems(java.lang.String processId, Paging paging)
CollectionWithPagingInfo<Item>
Tasks. getItems(java.lang.String taskId, Paging paging)
CollectionWithPagingInfo<FormModelElement>
ProcessDefinitions. getStartFormModel(java.lang.String definitionId, Paging paging)
CollectionWithPagingInfo<TaskCandidate>
Tasks. getTaskCandidates(java.lang.String taskId, Paging paging)
CollectionWithPagingInfo<FormModelElement>
Tasks. getTaskFormModel(java.lang.String entityResourceId, Paging paging)
CollectionWithPagingInfo<TaskVariable>
Tasks. getTaskVariables(java.lang.String taskId, Paging paging, VariableScope scope)
CollectionWithPagingInfo<Variable>
Processes. getVariables(java.lang.String processId, Paging paging)
-
Uses of Paging in org.alfresco.rest.workflow.api.impl
Methods in org.alfresco.rest.workflow.api.impl with parameters of type Paging Modifier and Type Method Description CollectionWithPagingInfo<Deployment>
DeploymentsImpl. getDeployments(Paging paging)
CollectionWithPagingInfo<FormModelElement>
WorkflowRestImpl. getFormModelElements(org.alfresco.service.cmr.dictionary.TypeDefinition type, Paging paging)
CollectionWithPagingInfo<Item>
ProcessesImpl. getItems(java.lang.String processId, Paging paging)
CollectionWithPagingInfo<Item>
TasksImpl. getItems(java.lang.String taskId, Paging paging)
CollectionWithPagingInfo<Item>
WorkflowRestImpl. getItemsFromProcess(java.lang.String processId, Paging paging)
Get all items from the process package variableCollectionWithPagingInfo<FormModelElement>
ProcessDefinitionsImpl. getStartFormModel(java.lang.String definitionId, Paging paging)
CollectionWithPagingInfo<TaskCandidate>
TasksImpl. getTaskCandidates(java.lang.String taskId, Paging paging)
CollectionWithPagingInfo<FormModelElement>
TasksImpl. getTaskFormModel(java.lang.String taskId, Paging paging)
CollectionWithPagingInfo<TaskVariable>
TasksImpl. getTaskVariables(java.lang.String taskId, Paging paging, VariableScope scope)
CollectionWithPagingInfo<Variable>
ProcessesImpl. getVariables(java.lang.String processId, Paging paging)
-