co.com.sofka.domain.generic.ValueObject Maven / Gradle / Ivy
package co.com.sofka.domain.generic;
import java.io.Serializable;
/**
* The interface Value object.
*
* @param the type parameter
*/
public interface ValueObject extends Serializable {
/**
* Value t.
*
* @return the t
*/
T value();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy