All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.quamto.jira.data.common.entity.CommentEntity Maven / Gradle / Ivy

The newest version!
package com.quamto.jira.data.common.entity;

import java.sql.Timestamp;

import com.quamto.entity.BaseEntity;
import com.quamto.jira.data.common.JEnumerators.PluginEntities;


public class CommentEntity extends BaseEntity {
    
    private String idUser = null;
    private Long idEntity = null;
    private PluginEntities entityType = null;
    private Timestamp commentDate = null;
    private String comment = null;
    
    /**
     *  @return User that comments
     */
    public String getIdUser(){
        return this.idUser;
    }

    /**
     *  @param value User that comments
     */
    public void setIdUser(String value){
        this.idUser = value;
    }

    /**
     *  @return Entity identifier comment owner
     */
    public Long getIdEntity(){
        return this.idEntity;
    }

    /**
     *  @param value Entity identifier comment owner
     */
    public void setIdEntity(long value){
        this.idEntity = value;
    }

    /**
     *  @return Entity type
     */
    public PluginEntities getEntityType(){
        return this.entityType;
    }

    /**
     *  @param value Entity type
     */
    public void setEntityType(PluginEntities value){
        this.entityType = value;
    }

    /**
     *  @return Comment date
     */
    public Timestamp getCommentDate(){
        return this.commentDate;
    }

    /**
     *  @param value Comment date
     */
    public void setCommentDate(Timestamp value){
        this.commentDate = value;
    }

    /**
     *  @return Comment
     */
    public String getComment(){
        return this.comment;
    }

    /**
     *  @param value Comment  
     */
    public void setComment(String value){
        this.comment = value;
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy