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

org.ligoj.app.plugin.bt.model.IssueDetails Maven / Gradle / Ivy

The newest version!
/*
 * Licensed under MIT (https://github.com/ligoj/ligoj/blob/master/LICENSE)
 */
package org.ligoj.app.plugin.bt.model;

import java.util.Date;

import org.ligoj.bootstrap.core.model.AbstractPersistable;

import lombok.Getter;
import lombok.Setter;

/**
 * An issue status details
 */
@Getter
@Setter
public class IssueDetails extends AbstractPersistable {

	/**
	 * Issue key as visible for end user.
	 */
	private String pkey;

	/**
	 * Creation date of issue.
	 */
	private Date created;

	/**
	 * Issue priority.
	 */
	private Integer priority;

	/**
	 * Current status of issue
	 */
	private int status;

	/**
	 * Issue type.
	 */
	private int type;

	/**
	 * Resolution identifier.
	 */
	private Integer resolution;

	/**
	 * Reporter identifier
	 */
	private String reporter;

	/**
	 * Assignee
	 */
	private String assignee;

	/**
	 * Timing data
	 */
	private Integer timeSpent;
	private Integer timeEstimate;
	private Integer timeEstimateInit;

	/**
	 * Original due date. May be null.
	 */
	private Date dueDate;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy