Package org.springmodules.resource

Examples of org.springmodules.resource.ResourceManager


   */
  public void setBeanFactory(BeanFactory beanFactory) {
    if (this.resourceInterceptor.getResourceManager() == null &&
        beanFactory instanceof ListableBeanFactory) {
      ListableBeanFactory lbf = (ListableBeanFactory) beanFactory;
      ResourceManager rm = (ResourceManager)
          BeanFactoryUtils.beanOfTypeIncludingAncestors(lbf, ResourceManager.class);
      this.resourceInterceptor.setResourceManager(rm);
    }
  }
View Full Code Here

TOP

Related Classes of org.springmodules.resource.ResourceManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.