Package de.xima.fc.api.entity
Class AppointmentTypeAPI
- java.lang.Object
-
- de.xima.fc.api.ASubAPI
-
- de.xima.fc.api.entity.AEntityAPI<AppointmentType>
-
- de.xima.fc.api.entity.AppointmentTypeAPI
-
public class AppointmentTypeAPI extends AEntityAPI<AppointmentType>
API class for reading and writingAppointmentType
entities.- Since:
- 6.5.0
- Author:
- XIMA MEDIA GmbH
-
-
Field Summary
-
Fields inherited from class de.xima.fc.api.entity.AEntityAPI
entityClass
-
-
Constructor Summary
Constructors Constructor Description AppointmentTypeAPI()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AppointmentType
getByUUID(UserContext uc, AppointmentTemplate template, String uuid)
Finds the appointment with the given UUID.AppointmentType
getByUUID(UserContext uc, AppointmentTemplate template, UUID uuid)
Finds the appointment with the given UUID.-
Methods inherited from class de.xima.fc.api.entity.AEntityAPI
create, 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.ASubAPI
getHandlerProvider
-
-
-
-
Method Detail
-
getByUUID
public AppointmentType getByUUID(UserContext uc, AppointmentTemplate template, String uuid)
Finds the appointment with the given UUID.- Parameters:
uc
- Current user context for accessing the database.template
- The template for which to find a slot.uuid
- UUID of an appointment.- Returns:
- The appointment with the given UUID.
-
getByUUID
public AppointmentType getByUUID(UserContext uc, AppointmentTemplate template, UUID uuid)
Finds the appointment with the given UUID.- Parameters:
uc
- Current user context for accessing the database.template
- The template for which to find a slot.uuid
- UUID of an appointment.- Returns:
- The appointment with the given UUID.
-
-