Package de.xima.fc.handler.entity
Class AppointmentTypeHandler
- java.lang.Object
-
- de.xima.fc.handler.AMSApiHandler
-
- de.xima.fc.handler.entity.GenericHandler
-
- de.xima.fc.handler.entity.AppointmentTypeHandler
-
- All Implemented Interfaces:
IAPIHandler
,IAppointmentTypeHandler
,IGenericHandler
,Serializable
public class AppointmentTypeHandler extends GenericHandler implements IAppointmentTypeHandler
Handler implementation for reading and writingAppointmentType
entities.- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class de.xima.fc.handler.entity.GenericHandler
LOG
-
-
Constructor Summary
Constructors Constructor Description AppointmentTypeHandler()
-
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.handler.entity.GenericHandler
create, create, delete, delete, deleteBy, deleteById, deleteById, getAll, getAllBy, getAttributes, getAttributes, getBy, getById, getById, getById, getSingleAttributes, getSingleAttributes, resultTotalCount, serializableList, update, update
-
Methods inherited from class de.xima.fc.handler.AMSApiHandler
getName
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface de.xima.fc.com.interfaces.IAPIHandler
getName
-
Methods inherited from interface de.xima.fc.handler.interfaces.entity.IGenericHandler
create, create, delete, delete, deleteBy, deleteById, deleteById, getAll, getAllBy, getAttributes, getAttributes, getBy, getById, getById, getById, getSingleAttributes, getSingleAttributes, resultTotalCount, update, update
-
-
-
-
Method Detail
-
getByUUID
public AppointmentType getByUUID(UserContext uc, AppointmentTemplate template, String uuid)
Description copied from interface:IAppointmentTypeHandler
Finds the appointment with the given UUID.- Specified by:
getByUUID
in interfaceIAppointmentTypeHandler
- 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)
Description copied from interface:IAppointmentTypeHandler
Finds the appointment with the given UUID.- Specified by:
getByUUID
in interfaceIAppointmentTypeHandler
- 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.
-
-