
generic.Service Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of abstract-service Show documentation
Show all versions of abstract-service Show documentation
A set of components that facilitate the service creation.
The newest version!
package generic;
import java.io.Serializable;
public interface Service extends Serializable {
public boolean saveOrUpdate(T object);
public boolean isStateInvalid(T object);
public boolean isUnique(T object);
public boolean hasObject(T object);
public boolean remove(T object);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy