
events.system.domain.EventLocation Maven / Gradle / Ivy
package events.system.domain;
import hbm.domain.BaseBusinessObject;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
import user.management.domain.User;
import address.book.domain.Address;
import de.alpharogroup.scheduler.system.domain.Appointment;
import de.alpharogroup.scheduler.system.model.Appointments;
@Getter
@Setter
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = true)
public class EventLocation extends BaseBusinessObject
{
/** The serial Version UID */
private static final long serialVersionUID = 1L;
/**
* The appointment attribute that references to the Entity class {@link Appointments}.
*/
private Appointment appointment;
/**
* The contactperson attribute that references to the domain class {@link User}.
*/
private User contactperson;
/**
* The event attribute that references to the domain class {@link EventTemplateBusinessObject}.
*/
private EventTemplateBusinessObject event;
/**
* The eventLocation attribute that references to the domain class {@link Address}.
*/
private Address eventLocation;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy