Class RecordCategoriesEntityResource
- java.lang.Object
-
- org.alfresco.rm.rest.api.recordcategories.RecordCategoriesEntityResource
-
- All Implemented Interfaces:
EntityResourceAction.Delete
,EntityResourceAction.ReadById<RecordCategory>
,EntityResourceAction.Update<RecordCategory>
,ResourceAction
,org.springframework.beans.factory.InitializingBean
@EntityResource(name="record-categories", title="Record Categories") public class RecordCategoriesEntityResource extends Object implements EntityResourceAction.ReadById<RecordCategory>, EntityResourceAction.Delete, EntityResourceAction.Update<RecordCategory>, org.springframework.beans.factory.InitializingBean
Record category entity resource- Since:
- 2.6
- Author:
- Ana Bozianu, Tuna Aksoy
-
-
Constructor Summary
Constructors Constructor Description RecordCategoriesEntityResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
afterPropertiesSet()
void
delete(String recordCategoryId, Parameters parameters)
RecordCategory
readById(String recordCategoryId, Parameters parameters)
void
setApiUtils(FilePlanComponentsApiUtils apiUtils)
void
setFileFolderService(FileFolderService fileFolderService)
void
setNodesModelFactory(ApiNodesModelFactory nodesModelFactory)
void
setTransactionService(TransactionService transactionService)
RecordCategory
update(String recordCategoryId, RecordCategory recordCategoryInfo, Parameters parameters)
-
-
-
Method Detail
-
setApiUtils
public void setApiUtils(FilePlanComponentsApiUtils apiUtils)
-
setFileFolderService
public void setFileFolderService(FileFolderService fileFolderService)
-
setNodesModelFactory
public void setNodesModelFactory(ApiNodesModelFactory nodesModelFactory)
-
setTransactionService
public void setTransactionService(TransactionService transactionService)
-
afterPropertiesSet
public void afterPropertiesSet() throws Exception
- Specified by:
afterPropertiesSet
in interfaceorg.springframework.beans.factory.InitializingBean
- Throws:
Exception
-
readById
public RecordCategory readById(String recordCategoryId, Parameters parameters)
- Specified by:
readById
in interfaceEntityResourceAction.ReadById<RecordCategory>
-
update
public RecordCategory update(String recordCategoryId, RecordCategory recordCategoryInfo, Parameters parameters)
- Specified by:
update
in interfaceEntityResourceAction.Update<RecordCategory>
-
delete
public void delete(String recordCategoryId, Parameters parameters)
- Specified by:
delete
in interfaceEntityResourceAction.Delete
-
-