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

yakworks.security.audit.AuditStamp Maven / Gradle / Ivy

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 {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy