Package com.sun.enterprise.util

Examples of com.sun.enterprise.util.JarClassLoader


                                                    "lib"+ // NOI18N
                                                    File.separator;
            classPath.add(as_lib_root + "javaee.jar"); // NOI18N
        }

        JarClassLoader jcl = new JarClassLoader();
        // toURI().toURL() takes care of all the escape characters in the
        // absolutePath. The toURI() method encodes all escape characters. Since
        // EJBClassLoader does not decode these urls here only toURL() is used.
        // Once this issue is fixed in EJBClassloader we can change it to
        // toURI().toURL()
        for (String path : classPath)
            jcl.appendURL(new File(path));
        return jcl;
    }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.util.JarClassLoader

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.