com.deliveredtechnologies.rulebook.model.Auditable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rulebook-core Show documentation
Show all versions of rulebook-core Show documentation
A simple and intuitive rules abstraction for Java
package com.deliveredtechnologies.rulebook.model;
/**
* Created by clong on 9/2/17.
*/
public interface Auditable {
void setAuditor(Auditor auditor);
/**
* Gets the name of the audited rule.
* @return the the class name by default.
*/
default String getName() {
return this.getClass().getSimpleName();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy