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

grails.gorm.tests.ClassWithNoArgBeforeValidate.groovy Maven / Gradle / Ivy

There is a newer version: 9.0.0-M2
Show newest version
package grails.gorm.tests

import grails.persistence.Entity;

@Entity
class ClassWithNoArgBeforeValidate implements Serializable {
    Long id
    Long version
    def noArgCounter = 0
    String name

    def beforeValidate() {
        ++noArgCounter
    }

    static constraints = {
        name blank: false
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy