GRAILS-1019: Allowing expressions to be used with the 'disabled' attribute for g...
[grails.git] / src / commons / org / codehaus / groovy / grails / commons / spring / GrailsResourceHolder.java
blob4f11deaa417dbccbdbe9c1e2c71d3592f9811aac
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.commons.spring;
17 import org.codehaus.groovy.grails.commons.GrailsResourceUtils;
18 import org.springframework.core.io.Resource;
20 /**
21 * A class that holds references to all the Grails resource instances to support class reloading
23 * @author Graeme Rocher
24 * @since 31-Jan-2006
26 public class GrailsResourceHolder {
29 public static final String APPLICATION_CONTEXT_ID = "grailsResourceHolder";
31 private Resource[] resources = {};
33 public Resource[] getResources() {
34 return resources;
37 public void setResources(Resource[] resources) {
38 this.resources = resources;
41 /**
42 * @param resource
43 * @return Retrieves the class name of the specified resource
45 public String getClassName(Resource resource) {
46 return GrailsResourceUtils.getClassName(resource);