Package de.xima.fc.dao.interfaces
Interface IAppointmentTemplateDao
- All Superinterfaces:
de.xima.cmn.dao.interfaces.IAbstractDao<AppointmentTemplate,,Long, IEntityContext> IGenericDao<AppointmentTemplate>
- All Known Implementing Classes:
AppointmentTemplateDao
DAO for reading and writing
AppointmentTemplate entities.- Since:
- 6.5.0
- Author:
- XIMA MEDIA GmbH
-
Method Summary
Modifier and TypeMethodDescriptionfindUniqueName(IEntityContext ec, Mandant client, String candidate) Returns a name that is not taken by anotherAppointmentTemplatein the given client.findUniqueName(IEntityContext ec, Mandant client, String candidate, AppointmentTemplate exclude) Returns a name that is not taken by anotherAppointmentTemplatein the given client.getAllByClient(IEntityContext ec, Mandant currentClient) Finds all available appointment templates of the given client.getAllSlotsOfTemplates(IEntityContext ec, List<AppointmentTemplate> templates, boolean merge) Finds all available appointment slots of the given templates.getByUUID(IEntityContext ec, Mandant client, String uuid) Returns the template with the given UUIDgetByUUID(IEntityContext ec, Mandant client, UUID uuid) Returns the template with the given UUIDbooleanisNameExisiting(IEntityContext ec, Mandant client, String name) Returns whether or not the given entity name exists within the given clientMethods inherited from interface de.xima.cmn.dao.interfaces.IAbstractDao
all, bulkDelete, bulkUpdate, checkLockingVersion, create, create, delete, delete, deleteAll, executePagedDaoAction, getAttributes, getAttributes, getSingleAttributes, getSingleAttributes, getTransactionHandler, read, registerListener, registerListener, registerListener, resultTotalCount, setTransactionHandler, singleElement, unregisterListener, unregisterListener, unregisterListener, update, updateMethods inherited from interface de.xima.fc.dao.interfaces.IGenericDao
count, findAll, findSingle, getEntityRefs, read
-
Method Details
-
getByUUID
Returns the template with the given UUID- Parameters:
ec-IEntityContextto useclient- The client for which to find the template. Please note that different clients may have templates with the same UUID.uuid-StringUUID of the template- Returns:
- The appointment template for the given UUID
-
getByUUID
Returns the template with the given UUID- Parameters:
ec-IEntityContextto useclient- The client for which to find the template. Please note that different clients may have templates with the same UUID.uuid-UUIDUUID of the template- Returns:
- The appointment template for the given UUID
-
getAllByClient
Finds all available appointment templates of the given client.- Parameters:
ec-IEntityContextto usecurrentClient- Client for which to find the appointment templates.- Returns:
- All appointment templates of the given client.
-
getAllSlotsOfTemplates
List<AppointmentSlot> getAllSlotsOfTemplates(IEntityContext ec, List<AppointmentTemplate> templates, boolean merge) Finds all available appointment slots of the given templates.- Parameters:
ec-IEntityContextto usetemplates- Templates to use.merge- Whether to merge overlapping slots.- Returns:
- All appointment slots of the given templates.
-
findUniqueName
Returns a name that is not taken by anotherAppointmentTemplatein the given client. An index will be added to the candidate if necessary.- Parameters:
ec-IEntityContextto be usedclient-Mandantfor which a unique template name should be generatedcandidate-Stringappointment template name candidate to be made unique- Returns:
- unique appointment template name in the context of the given client
-
findUniqueName
String findUniqueName(IEntityContext ec, Mandant client, String candidate, AppointmentTemplate exclude) Returns a name that is not taken by anotherAppointmentTemplatein the given client. An index will be added to the candidate if necessary.- Parameters:
ec-IEntityContextto be usedclient-Mandantfor which a unique template name should be generatedcandidate-Stringappointment template name candidate to be made uniqueexclude-AppointmentTemplateentity to exclude from search for unique name- Returns:
- unique appointment template name in the context of the given client
-
isNameExisiting
Returns whether or not the given entity name exists within the given client- Parameters:
ec-IEntityContextto be usedclient-Mandantfor which to check uniquenessname-Stringname to check- Returns:
- whether or not the given name is unique
- Throws:
IllegalArgumentException- if the entity class of this DAO does not provide a name
-