Package de.xima.fc.api.entity
Class FormRecordChatAPI
- java.lang.Object
-
- de.xima.fc.api.ASubAPI
-
- de.xima.fc.api.entity.AEntityAPI<FormRecordChat>
-
- de.xima.fc.api.entity.FormRecordChatAPI
-
public class FormRecordChatAPI extends AEntityAPI<FormRecordChat>
API class for reading and writingFormRecordChat
entities.- Since:
- 8.2.0
- Author:
- XIMA Media GmbH
-
-
Field Summary
-
Fields inherited from class de.xima.fc.api.entity.AEntityAPI
entityClass
-
-
Constructor Summary
Constructors Constructor Description FormRecordChatAPI()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<FormRecordChat>
getAllByRecord(UserContext uc, String recordUuid)
PagedResult<FormRecordChat>
getByRecordAndUser(UserContext uc, UUID recordUuid, IUser user, int page, int pageSize)
List<FormRecordChat>
getByUser(UserContext uc, IUser user)
PagedResult<FormRecordChat>
getByUser(UserContext uc, IUser user, int page, int pageSize)
FormRecordChat
getByUuid(UserContext uc, UUID uuid)
FormRecordChat
getByUuidAndUser(UserContext uc, UUID uuid, IUser user)
-
Methods inherited from class de.xima.fc.api.entity.AEntityAPI
create, create, delete, delete, deleteAllBy, deleteById, deleteById, getAll, getAllBy, getAttributes, getAttributes, getBy, getById, getById, getEntityRefs, getPagedResult, getSingleAttributes, getSingleAttributes, resultTotalCount, resultTotalCount, update, update
-
Methods inherited from class de.xima.fc.api.ASubAPI
getHandlerProvider
-
-
-
-
Method Detail
-
getByUuid
public FormRecordChat getByUuid(UserContext uc, UUID uuid)
-
getByUuidAndUser
public FormRecordChat getByUuidAndUser(UserContext uc, UUID uuid, IUser user)
-
getByUser
public List<FormRecordChat> getByUser(UserContext uc, IUser user)
-
getByUser
public PagedResult<FormRecordChat> getByUser(UserContext uc, IUser user, int page, int pageSize)
-
getAllByRecord
public List<FormRecordChat> getAllByRecord(UserContext uc, String recordUuid)
-
getByRecordAndUser
public PagedResult<FormRecordChat> getByRecordAndUser(UserContext uc, UUID recordUuid, IUser user, int page, int pageSize)
-
-