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

com.github.thiagogarbazza.domainvalidation.Validator Maven / Gradle / Ivy

There is a newer version: 0.1.0
Show newest version
package com.github.thiagogarbazza.domainvalidation;

public interface Validator {

    void onCreate(final T entity) throws ViolationException;

    void onDelete(final T entity) throws ViolationException;

    void onUpdate(final T entity) throws ViolationException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy