![JAR search and dependency download from the Maven repository](/logo.png)
nyla.solutions.core.data.Versioned Maven / Gradle / Ivy
package nyla.solutions.core.data;
import java.io.Serializable;
/**
*
* Versioned represents an object with a version number
*
* @author Gregory Green
* @version 1.0
*/
public interface Versioned extends Serializable
{
/**
*
* @return version number
*/
public Integer getVersion();
/**
*
* @param aVersion the version to set
*/
public void setVersion(Integer aVersion);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy