Subversion Repositories general

Rev

Rev 918 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package ak.hostcaptain.core.model;

public abstract class GeneralModelObject
        implements ModelObject
{
        private Boolean enabled;
        private String  comment;

        /**
         *
         * @hibernate.property
         */
        public Boolean getEnabled()
        {
                return enabled;
        }

        public void setEnabled(Boolean enabled)
        {
                this.enabled = enabled;
        }

        /**
         *
         * @hibernate.property
         */
        public String getComment()
        {
                return comment;
        }

        public void setComment(String comment)
        {
                this.comment = comment;
        }
}