Interface IAppointmentFreeSlotQueryResult
- 
- All Superinterfaces:
 Serializable
- All Known Implementing Classes:
 AppointmentFreeSlotQueryResult
public interface IAppointmentFreeSlotQueryResult extends Serializable
Represents 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
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAppointmentTypeUuid()List<IAppointmentAvailableDate>getAvailableDates()ZoneIdgetZoneId() 
 - 
 
- 
- 
Method Detail
- 
getAppointmentTypeUuid
String getAppointmentTypeUuid()
- Returns:
 - The UUID of the 
AppointmentTypethat offers the available dates. 
 
- 
getAvailableDates
List<IAppointmentAvailableDate> getAvailableDates()
- Returns:
 - A list of available dates where an appointment can be booked.
 
 
- 
getZoneId
ZoneId getZoneId()
- Returns:
 - The time zone of the returned 
getAvailableDates(). 
 
 - 
 
 -