package com.trigent.vo;

/**
 * @author binoj_v
 *
 * To change this generated comment edit the template variable "typecomment":
 * Window>Preferences>Java>Templates.
 * To enable and disable the creation of type comments go to
 * Window>Preferences>Java>Code Generation.
 */
public class NextSequence {
	
	private Long tableID;

	private String sequenceFor;
	
	private Long nextValue;


	public NextSequence() {
		
	}

	/**
	 * Constructor for NewSequence.
	 */
	public NextSequence(String sequenceFor) {
		
		this.sequenceFor = sequenceFor;
		
	}

	/**
	 * Returns the nextValue.
	 * @return Long
	 */
	public Long getNextValue() {
		return nextValue;
	}

	/**
	 * Returns the sequenceFor.
	 * @return String
	 */
	public String getSequenceFor() {
		return sequenceFor;
	}

	/**
	 * Sets the nextValue.
	 * @param nextValue The nextValue to set
	 */
	public void setNextValue(Long nextValue) {
		this.nextValue = nextValue;
	}

	/**
	 * Sets the sequenceFor.
	 * @param sequenceFor The sequenceFor to set
	 */
	public void setSequenceFor(String sequenceFor) {
		this.sequenceFor = sequenceFor;
	}

	/**
	 * Returns the tableID.
	 * @return Long
	 */
	public Long getTableID() {
		return tableID;
	}

	/**
	 * Sets the tableID.
	 * @param tableID The tableID to set
	 */
	public void setTableID(Long tableID) {
		this.tableID = tableID;
	}

}
