yakworks.security.audit.AuditStamp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gorm-audit Show documentation
Show all versions of gorm-audit Show documentation
gorm-tools security and domain models
The newest version!
package yakworks.security.audit;
import org.codehaus.groovy.transform.GroovyASTTransformationClass;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Annotation used for GORM domain classes that should have the following
* properties createdBy/createdDate/editedBy/editedDate
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.TYPE })
@GroovyASTTransformationClass("yakworks.security.audit.ast.AuditStampASTTransformation")
public @interface AuditStamp {
}