br.com.jhonsapp.bootstrap.object.service.generic.Service Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bootstrap-object Show documentation
Show all versions of bootstrap-object Show documentation
A complete architecture for creating and managing users.
package br.com.jhonsapp.bootstrap.object.service.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);
}