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

grails.gorm.dirty.checking.DirtyCheckedProperty.groovy Maven / Gradle / Ivy

There is a newer version: 8.1.2
Show newest version
package grails.gorm.dirty.checking

import java.lang.annotation.ElementType
import java.lang.annotation.Retention
import java.lang.annotation.RetentionPolicy
import java.lang.annotation.Target

/**
 * A marker annotation added to methods that are dirty checked
 *
 * @author Graeme Rocher
 * @since 6.1
 */
@Retention(RetentionPolicy.RUNTIME)
@Target([ElementType.METHOD])
@interface DirtyCheckedProperty {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy