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

org.kuali.common.impex.Sequence Maven / Gradle / Ivy

package org.kuali.common.impex;

public class Sequence {

	private String name;
	private String nextVal;
	
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public String getNextVal() {
		return nextVal;
	}
	public void setNextVal(String nextVal) {
		this.nextVal = nextVal;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy