Package org.auto.web

Examples of org.auto.web.ServletContextSetter


  @Override
  public Object getObject(String objectName) {
    Object obj = newInstance(objectName);
    if (obj instanceof ServletContextSetter) {
      ServletContextSetter contextAware = (ServletContextSetter) obj;
      contextAware.setServletContext(servletContext);
    }
    return obj;
  }
View Full Code Here

TOP

Related Classes of org.auto.web.ServletContextSetter

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.