
events.system.domain.UserContactsAllowedContactmethod 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.ContactmethodBusinessObject;
import user.management.domain.User;
import user.management.model.Contactmethods;
import user.management.model.Users;
@Getter
@Setter
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = true)
public class UserContactsAllowedContactmethod extends BaseBusinessObject
{
/** The serial Version UID */
private static final long serialVersionUID = 1L;
/**
* The userContact attribute that references to the Entity class {@link Users} and is the
* contact from the user.
*/
private User userContact;
/**
* The userContactmethod attribute that references to the Entity class {@link Contactmethods}
* and is the allowed contact method from the user.
*/
private ContactmethodBusinessObject userContactmethod;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy