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

net.fishear.data.audit.annotations.Auditable Maven / Gradle / Ivy

The newest version!
package net.fishear.data.audit.annotations;

import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

@Target(TYPE)
@Documented
@Retention(RUNTIME)
public @interface Auditable {

	/**
	 * @return list of property named that should be ignored during comparison.
	 * Implementation does not check non-existing fields. Only those that exist and have difference are ignored.
	 */
	String[] ignored() default {};

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy