events.system.domain.Topic Maven / Gradle / Ivy
package events.system.domain;
import hbm.domain.BaseBusinessObject;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
@Getter
@Setter
@ToString(callSuper=true)
@EqualsAndHashCode(callSuper=true)
public class Topic extends BaseBusinessObject {
/** The serial Version UID */
private static final long serialVersionUID = 1L;
/** The name from the topic. */
private String name;
/** A flag that indicates if this topic is a node. */
private Boolean node;
/** The parent Topics object that references to the parent topic. */
private Topic parent;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy