Package org.alfresco.rest.api.types
Class TypeEntityResource
- java.lang.Object
-
- org.alfresco.rest.api.types.TypeEntityResource
-
- All Implemented Interfaces:
EntityResourceAction.Read<Type>
,EntityResourceAction.ReadById<Type>
,ResourceAction
,org.springframework.beans.factory.InitializingBean
@EntityResource(name="types", title="types") public class TypeEntityResource extends Object implements EntityResourceAction.ReadById<Type>, EntityResourceAction.Read<Type>, org.springframework.beans.factory.InitializingBean
-
-
Constructor Summary
Constructors Constructor Description TypeEntityResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
afterPropertiesSet()
CollectionWithPagingInfo<Type>
readAll(Parameters params)
Reads all the entries from the collection.Type
readById(String id, Parameters parameters)
void
setTypes(Types types)
-
-
-
Method Detail
-
setTypes
public void setTypes(Types types)
-
afterPropertiesSet
public void afterPropertiesSet()
- Specified by:
afterPropertiesSet
in interfaceorg.springframework.beans.factory.InitializingBean
-
readAll
public CollectionWithPagingInfo<Type> 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<Type>
- Parameters:
params
- - will never be null and will have the PAGING default values
-
readById
public Type readById(String id, Parameters parameters)
- Specified by:
readById
in interfaceEntityResourceAction.ReadById<Type>
-
-