Package org.alfresco.rest.api.aspects
Class AspectEntityResource
- java.lang.Object
-
- org.alfresco.rest.api.aspects.AspectEntityResource
-
- All Implemented Interfaces:
EntityResourceAction.Read<Aspect>
,EntityResourceAction.ReadById<Aspect>
,ResourceAction
,org.springframework.beans.factory.InitializingBean
@EntityResource(name="aspects", title="Aspects") public class AspectEntityResource extends Object implements EntityResourceAction.ReadById<Aspect>, EntityResourceAction.Read<Aspect>, org.springframework.beans.factory.InitializingBean
-
-
Constructor Summary
Constructors Constructor Description AspectEntityResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
afterPropertiesSet()
CollectionWithPagingInfo<Aspect>
readAll(Parameters params)
Reads all the entries from the collection.Aspect
readById(String id, Parameters parameters)
void
setAspects(Aspects aspects)
-
-
-
Method Detail
-
setAspects
public void setAspects(Aspects aspects)
-
afterPropertiesSet
public void afterPropertiesSet()
- Specified by:
afterPropertiesSet
in interfaceorg.springframework.beans.factory.InitializingBean
-
readAll
public CollectionWithPagingInfo<Aspect> readAll(Parameters params)
Description copied from interface:EntityResourceAction.Read
Reads all the entries from the collection. Paging information is provided.- Specified by:
readAll
in interfaceEntityResourceAction.Read<Aspect>
- Parameters:
params
- - will never be null and will have the PAGING default values
-
readById
public Aspect readById(String id, Parameters parameters)
- Specified by:
readById
in interfaceEntityResourceAction.ReadById<Aspect>
-
-