Package de.xima.fc.api.entity
Class ClientCounterApi
- java.lang.Object
- 
- de.xima.fc.api.ASubAPI
- 
- de.xima.fc.api.entity.AEntityAPI<ClientCounter>
- 
- de.xima.fc.api.entity.ClientCounterApi
 
 
 
- 
 public class ClientCounterApi extends AEntityAPI<ClientCounter> API forClientCounters that can be accessed viaAPIProvider.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
 
- 
- 
Field Summary- 
Fields inherited from class de.xima.fc.api.entity.AEntityAPIentityClass
 
- 
 - 
Constructor SummaryConstructors Constructor Description ClientCounterApi()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description ClientCountergetByName(UserContext uc, Mandant client, String name)ClientCountergetByUuid(UserContext uc, Mandant client, UUID uuid)- 
Methods inherited from class de.xima.fc.api.entity.AEntityAPIcreate, create, delete, delete, deleteAllBy, deleteById, deleteById, getAll, getAllBy, getAttributes, getAttributes, getBy, getById, getById, getSingleAttributes, getSingleAttributes, resultTotalCount, resultTotalCount, update, update
 - 
Methods inherited from class de.xima.fc.api.ASubAPIgetHandlerProvider
 
- 
 
- 
- 
- 
Method Detail- 
getByUuid@Nullable public ClientCounter getByUuid(UserContext uc, Mandant client, UUID uuid) - Parameters:
- uc- UserContext to be used.
- client- context to search for the counter.
- uuid- UUID of the counter.
- Returns:
- The counter with the given UUID that belongs to the client, or nullwhen no such counter exist.
- Since:
- 7.0.0
 
 - 
getByName@Nullable public ClientCounter getByName(UserContext uc, Mandant client, String name) - Parameters:
- uc- UserContext to be used.
- client- context to search for the counter.
- name- name of the counter.
- Returns:
- The counter with the given name that belongs to the client, or nullwhen no such counter exist.
- Since:
- 7.0.0
 
 
- 
 
-