GRAILS-1019: Allowing expressions to be used with the 'disabled' attribute for g...
[grails.git] / src / groovy / org / codehaus / groovy / grails / orm / hibernate / cfg / JoinTable.groovy
blob9a4073bd3e2344649af6f98523d334aa019417d9
1 /**
2 * Class that represents a Join table in Grails mapping. It has a name which represents the name of the table, a key
3 * for the primary key and a column which is the other side of the join
5 * @author Graeme Rocher
6 * @since 1.0
7 *
8 * Created: Oct 8, 2007
9 */
10 package org.codehaus.groovy.grails.orm.hibernate.cfg
11 class JoinTable {
13 String name
14 String key
15 String column