events.system.domain.ProfileTopic 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;
@Getter
@Setter
@ToString(callSuper=true)
@EqualsAndHashCode(callSuper=true)
public class ProfileTopic extends BaseBusinessObject {
/** The serial Version UID */
private static final long serialVersionUID = 1L;
/**
* The topic attribute that references to the domain class {@link Topic}.
*/
private Topic topic;
/** The user attribute that references to the domain class {@link User}. */
private User user;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy