Uses of Interface
de.xima.fc.interfaces.appointment.IAppointmentQueryParams
-
Packages that use IAppointmentQueryParams Package Description de.xima.fc.api.entity Package for the API access of the model classes.de.xima.fc.appointment de.xima.fc.dao.impl de.xima.fc.dao.interfaces de.xima.fc.handler.entity de.xima.fc.handler.interfaces.entity -
-
Uses of IAppointmentQueryParams in de.xima.fc.api.entity
Methods in de.xima.fc.api.entity with parameters of type IAppointmentQueryParams Modifier and Type Method Description List<Appointment>
AppointmentAPI. getAllBy(UserContext uc, IAppointmentQueryParams queryParams)
Returns all appointments that match the given query parameters. -
Uses of IAppointmentQueryParams in de.xima.fc.appointment
Classes in de.xima.fc.appointment that implement IAppointmentQueryParams Modifier and Type Class Description class
AppointmentQueryParams
POJO implementation with builder forIAppointmentQueryParams
.Methods in de.xima.fc.appointment that return IAppointmentQueryParams Modifier and Type Method Description IAppointmentQueryParams
AppointmentQueryParams.Builder. build()
-
Uses of IAppointmentQueryParams in de.xima.fc.dao.impl
Methods in de.xima.fc.dao.impl with parameters of type IAppointmentQueryParams Modifier and Type Method Description int
AppointmentDao. countBy(IEntityContext ec, IAppointmentQueryParams params)
List<Appointment>
AppointmentDao. getAllBy(IEntityContext ec, IAppointmentQueryParams params)
<View extends IEffectiveAppointmentStatusProviding>
List<View>AppointmentDao. getAttributesBy(IEntityContext ec, IAppointmentQueryParams params, Class<View> viewClass)
-
Uses of IAppointmentQueryParams in de.xima.fc.dao.interfaces
Methods in de.xima.fc.dao.interfaces with parameters of type IAppointmentQueryParams Modifier and Type Method Description int
IAppointmentDao. countBy(IEntityContext ec, IAppointmentQueryParams queryParams)
Returns the number of all appointments that match the given query params.List<Appointment>
IAppointmentDao. getAllBy(IEntityContext ec, IAppointmentQueryParams queryParams)
Returns all appointments that match the given query params.<View extends IEffectiveAppointmentStatusProviding>
List<View>IAppointmentDao. getAttributesBy(IEntityContext ec, IAppointmentQueryParams queryParams, Class<View> viewType)
Returns all appointments that match the given query params. -
Uses of IAppointmentQueryParams in de.xima.fc.handler.entity
Methods in de.xima.fc.handler.entity with parameters of type IAppointmentQueryParams Modifier and Type Method Description List<Appointment>
AppointmentHandler. getAllBy(UserContext uc, IAppointmentQueryParams params)
-
Uses of IAppointmentQueryParams in de.xima.fc.handler.interfaces.entity
Methods in de.xima.fc.handler.interfaces.entity with parameters of type IAppointmentQueryParams Modifier and Type Method Description List<Appointment>
IAppointmentHandler. getAllBy(UserContext uc, IAppointmentQueryParams queryParams)
Returns all appointments that match the given query parameters.
-