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

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