Interface IAppointmentAvailableDate
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
AppointmentAvailableDate
public interface IAppointmentAvailableDate extends Serializable
Represents part of the result of a query that retrieves the available times of aAppointmentTemplate
. Used by the appointment widget in the form: it sends a query to the appointment servlet.- Since:
- 6.5.0
- Author:
- XIMA MEDIA GmbH
- See Also:
IAppointmentFreeSlotQueryResult
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LocalDate
getDate()
List<IAppointmentFreeSlot>
getTimes()
-
-
-
Method Detail
-
getDate
LocalDate getDate()
- Returns:
- The start date of the free slot.
-
getTimes
List<IAppointmentFreeSlot> getTimes()
- Returns:
- A list of times that are free on this
getDate()
.
-
-