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

com.quamto.jira.data.time.entity.EstimateTimeEntity Maven / Gradle / Ivy

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

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

public class EstimateTimeEntity extends BaseEntity {
	
	private String idState = null;
	private Long estimatedTime = null;
	private Long remainingTime = null;
	private Long idEntity = null;
	private PluginEntities entityType = null;
	private Long idOwner = null;
	private Long idProject = null;


	public Long getIdProject() {
		return idProject;
	}

	public void setIdProject(Long idProject) {
		this.idProject = idProject;
	}


	/**
	 * @return the State identifier of the estimation
	 */
	public String getIdState() {
		return idState;
	}
	/**
	 * @param value State identifier of the estimation
	 */
	public void setIdState(String value) {
		this.idState = value;
	}
	/**
	 * @return Estimated time in minutes
	 */
	public Long getEstimatedTime() {
		return estimatedTime;
	}
	/**
	 * @param value Estimated time in minutes
	 */
	public void setEstimatedTime(Long value) {
		this.estimatedTime = value;
	}
	/**
	 * @return Entity identifier associated to the estimation
	 */
	public Long getIdEntity() {
		return idEntity;
	}
	/**
	 * @param value Entity identifier associated to the estimation
	 */
	public void setIdEntity(Long value) {
		this.idEntity = value;
	}
	/**
	 * @return Entity type associated to the estimation
	 */
	public PluginEntities getEntityType() {
		return entityType;
	}
	/**
	 * @param value Entity type associated to the estimation
	 */
	public void setEntityType(PluginEntities value) {
		this.entityType = value;
	}
	/**
	 * @return Owner identifier of the estimation
	 */
	public Long getIdOwner() {
		return idOwner;
	}
	/**
	 * @param value Owner identifier of the estimation
	 */
	public void setIdOwner(Long value) {
		this.idOwner = value;
	}


	public Long getRemainingTime() {
		return remainingTime;
	}

	public void setRemainingTime(Long remainingTime) {
		this.remainingTime = remainingTime;
	}
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy