Package com.caucho.config.types

Examples of com.caucho.config.types.DataSourceRef


  // references and resources
  //
 
  public DataSourceRef createDataSource()
  {
    DataSourceRef def = new DataSourceRef();
   
    def.setProgram(true);

    ClassLoader loader = Thread.currentThread().getContextClassLoader();
    def.setJndiClassLoader(loader);
   
    _resourceList.add(def);
   
    return def;
  }
View Full Code Here

TOP

Related Classes of com.caucho.config.types.DataSourceRef

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.