GRAILS-1019: Allowing expressions to be used with the 'disabled' attribute for g...
[grails.git] / test / tiger / org / codehaus / groovy / grails / orm / hibernate / ManyEntity.groovy
blobc780c685b1e2b563017bcbff4bd1af6581447509
1 package org.codehaus.groovy.grails.orm.hibernate
3 import javax.persistence.Entity
4 import javax.persistence.GeneratedValue
5 import javax.persistence.Id
7 /**
8 * @author Graeme Rocher
9 * @since 1.0
11 * Created: Apr 8, 2008
14 @Entity
15 class ManyEntity {
17 @Id
18 @GeneratedValue(strategy = javax.persistence.GenerationType.IDENTITY)
19 Long id