package org.springframework.roo.addon.jpa.annotations.audit; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Indicates an entity class which must be audited * * @author Sergio Clares * @author Juan Carlos GarcĂ­a * @since 2.0 */ @Target(ElementType.TYPE) @Retention(RetentionPolicy.SOURCE) public @interface RooJpaAudit { }