Package org.apache.catalina

Examples of org.apache.catalina.JarRepository


            authenticatorConfig();
        }

        // Find and configure overlays
        if (ok) {
            JarRepository jarRepository = context.getJarRepository();
            JarFile[] jars = jarRepository.findJars();
            for (int i = 0; i < jars.length; i++) {
                if (jars[i].getEntry(Globals.OVERLAY_PATH) != null) {
                    if (context.getResources() instanceof ProxyDirContext) {
                        ProxyDirContext resources = (ProxyDirContext) context.getResources();
                        JARDirContext overlay = new JARDirContext();
View Full Code Here


     * @param jarRepository The newly associated JarRepository
     */
    public synchronized void setJarRepository(JarRepository jarRepository) {

        // Change components if necessary
        JarRepository oldJarRepository = this.jarRepository;
        if (oldJarRepository == jarRepository)
            return;
        this.jarRepository = jarRepository;

        // Stop the old component if necessary
View Full Code Here

TOP

Related Classes of org.apache.catalina.JarRepository

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.