GRAILS-1019: Allowing expressions to be used with the 'disabled' attribute for g...
[grails.git] / src / persistence / org / codehaus / groovy / grails / orm / hibernate / cfg / GrailsDomainConfiguration.java
blob205a3cff7a1ae2a7b03205bf78be3f42e35a7846
1 /* Copyright 2004-2005 the original author or authors.
2 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
15 package org.codehaus.groovy.grails.orm.hibernate.cfg;
17 import org.codehaus.groovy.grails.commons.GrailsApplication;
18 import org.codehaus.groovy.grails.commons.GrailsDomainClass;
20 /**
21 * @author Graeme Rocher
22 * @since 04-Aug-2005
25 public interface GrailsDomainConfiguration {
26 /**
27 * Adds a domain class to the configuration
28 * @param domainClass
29 * @return this
31 public abstract GrailsDomainConfiguration addDomainClass(
32 GrailsDomainClass domainClass);
34 /**
35 * Sets the grails application instance
36 * @param application The grails application to use or null if none.
38 public abstract void setGrailsApplication(GrailsApplication application);