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

com.deliveredtechnologies.rulebook.model.Auditable Maven / Gradle / Ivy

There is a newer version: 0.12
Show newest version
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