DetailLog.java 1.05 KB
package th.co.ais.ssbsrfc.instance;


public class DetailLog {

	private DetailLogDetail _projectName_ = null;
	private String CurrentState = "";
	private String NextState = "";
	private long ProcessingTime = -1;
	
	public DetailLog ()
	{ }

	public DetailLog(DetailLogDetail details, String currentState,
			String nextState, long processingTime) {
		super();
		this._projectName_ = details;
		CurrentState = currentState;
		NextState = nextState;
		ProcessingTime = processingTime;
	}

	public DetailLogDetail getDetail() {
		return _projectName_;
	}

	public void setDetail(DetailLogDetail details) {
		this._projectName_ = details;
	}

	public String getCurrentState() {
		return CurrentState;
	}

	public void setCurrentState(String currentState) {
		CurrentState = currentState;
	}

	public String getNextState() {
		return NextState;
	}

	public void setNextState(String nextState) {
		NextState = nextState;
	}

	public long getProcessingTime() {
		return ProcessingTime;
	}

	public void setProcessingTime(long processingTime) {
		ProcessingTime = processingTime;
	}
}