blob: effe462b16156201261463aa2dcb5bcf906d91cc [file] [log] [blame]
package org.codehaus.groovy.grails.domain;
class RelationshipsTest {
@Property relationships = [ "ones" : OneToManyTest2.class,"manys" : ManyToManyTest.class ];
@Property Long id;
@Property Long version;
@Property Set manys; // many-to-many relationship
@Property OneToOneTest one; // uni-directional one-to-one
@Property Set ones; // uni-directional one-to-many relationship
}