All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.enterprise.web.VirtualServerFacade Maven / Gradle / Ivy

There is a newer version: 4.1.2.181
Show newest version
/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright (c) 2011-2012 Oracle and/or its affiliates. All rights reserved.
 *
 * The contents of this file are subject to the terms of either the GNU
 * General Public License Version 2 only ("GPL") or the Common Development
 * and Distribution License("CDDL") (collectively, the "License").  You
 * may not use this file except in compliance with the License.  You can
 * obtain a copy of the License at
 * https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
 * or packager/legal/LICENSE.txt.  See the License for the specific
 * language governing permissions and limitations under the License.
 *
 * When distributing the software, include this License Header Notice in each
 * file and include the License file at packager/legal/LICENSE.txt.
 *
 * GPL Classpath Exception:
 * Oracle designates this particular file as subject to the "Classpath"
 * exception as provided by Oracle in the GPL Version 2 section of the License
 * file that accompanied this code.
 *
 * Modifications:
 * If applicable, add the following below the License Header, with the fields
 * enclosed by brackets [] replaced by your own identifying information:
 * "Portions Copyright [year] [name of copyright owner]"
 *
 * Contributor(s):
 * If you wish your version of this file to be governed by only the CDDL or
 * only the GPL Version 2, indicate your decision by adding "[Contributor]
 * elects to include this software in this distribution under the [CDDL or GPL
 * Version 2] license."  If you don't indicate a single choice of license, a
 * recipient has the option to distribute your version of this file under
 * either the CDDL, the GPL Version 2 or to extend the choice of license to
 * its licensees as provided above.  However, if you add GPL Version 2 code
 * and therefore, elected the GPL Version 2 license, then the option applies
 * only if the new code is made subject to such option by the copyright
 * holder.
 */
package com.sun.enterprise.web;


import java.io.*;
import java.net.*;
import java.util.*;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.servlet.*;
import javax.servlet.descriptor.JspConfigDescriptor;

import com.sun.enterprise.config.serverbeans.Applications;
import org.apache.catalina.core.*;
import org.apache.catalina.deploy.FilterDef;
import org.apache.catalina.deploy.FilterMap;
import org.glassfish.embeddable.Deployer;
import org.glassfish.embeddable.GlassFishException;
import org.glassfish.embeddable.web.ConfigException;
import org.glassfish.embeddable.web.Context;
import org.glassfish.embeddable.web.WebListener;
import org.glassfish.embeddable.web.config.SecurityConfig;
import org.glassfish.embeddable.web.config.VirtualServerConfig;
import org.glassfish.internal.api.Globals;

/**
 * Facade object which masks the internal VirtualServer
 * object from the web application.
 *
 * @author Amy Roh
 */
public class VirtualServerFacade implements org.glassfish.embeddable.web.VirtualServer {

        
    // ----------------------------------------------------------- Constructors


    public VirtualServerFacade(String id, File docRoot, WebListener...  webListeners) {
        this.id = id;
        this.docRoot = docRoot;
        if (webListeners != null) {
            this.webListeners = Arrays.asList(webListeners);
        }
    }


    // ----------------------------------------------------- Instance Variables


    private VirtualServerConfig config;

    private File docRoot;

    private String id;

    /**
     * Wrapped web module.
     */
    private VirtualServer vs = null;

    private List webListeners = null;

    // ----------------------------------------------------- embedded methods


    /**
     * Sets the docroot of this VirtualServer.
     *
     * @param docRoot the docroot of this VirtualServer.
     */
    public void setDocRoot(File docRoot) {
        this.docRoot = docRoot;
        if (vs != null) {
            vs.setDocRoot(docRoot);
        }
    }

    /**
     * Gets the docroot of this VirtualServer.
     */
    public File getDocRoot() {
        return docRoot;
    }

    /**
     * Return the virtual server identifier.
     */
    public String getID() {
        return id;
    }

    /**
     * Set the virtual server identifier string.
     *
     * @param id New identifier for this virtual server
     */
    public void setID(String id) {
        this.id = id;
        if (vs != null) {
            vs.setID(id);
        }
    }

    /**
     * Sets the collection of WebListener instances from which
     * this VirtualServer receives requests.
     *
     * @param webListeners the collection of WebListener instances from which
     * this VirtualServer receives requests.
     */
    public void setWebListeners(WebListener...  webListeners) {
        if (webListeners != null) {
            this.webListeners = Arrays.asList(webListeners);
        }
    }

    /**
     * Gets the collection of WebListener instances from which
     * this VirtualServer receives requests.
     *
     * @return the collection of WebListener instances from which
     * this VirtualServer receives requests.
     */
    public Collection getWebListeners() {
        return webListeners;
    }

    /**
     * Registers the given Context with this VirtualServer
     * at the given context root.
     *
     * 

If this VirtualServer has already been started, the * given context will be started as well. */ public void addContext(Context context, String contextRoot) throws ConfigException, GlassFishException { if (vs != null) { vs.addContext(context, contextRoot); } else { throw new GlassFishException("Virtual server "+id+" has not been added"); } } /** * Stops the given context and removes it from this * VirtualServer. */ public void removeContext(Context context) throws GlassFishException { if (vs != null) { vs.removeContext(context); } else { throw new GlassFishException("Virtual server "+id+" has not been added"); } } /** * Finds the Context registered at the given context root. */ public Context getContext(String contextRoot) { if (vs != null) { return vs.getContext(contextRoot); } else { return null; } } /** * Gets the collection of Context instances registered with * this VirtualServer. */ public Collection getContexts() { if (vs != null) { return vs.getContexts(); } else { return null; } } /** * Reconfigures this VirtualServer with the given * configuration. * *

In order for the given configuration to take effect, this * VirtualServer may be stopped and restarted. */ public void setConfig(VirtualServerConfig config) throws ConfigException { this.config = config; if (vs != null) { vs.setConfig(config); } } /** * Gets the current configuration of this VirtualServer. */ public VirtualServerConfig getConfig() { return config; } public void setVirtualServer(VirtualServer vs) { this.vs = vs; } public VirtualServer getVirtualServer() { return vs; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy