|
Glassfish example source code file (WebContainer.java)
The Glassfish WebContainer.java source code/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 1997-2011 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 org.glassfish.embeddable.web;
import java.io.File;
import java.util.Collection;
import java.util.logging.Level;
import org.glassfish.embeddable.web.config.WebContainerConfig;
import org.glassfish.embeddable.GlassFishException;
/**
* Class representing an embedded web container, which supports the
* programmatic creation of different types of web protocol listeners
* and virtual servers, and the registration of static and dynamic
* web resources into the URI namespace.
*
* WebContainer service can be accessed using GlassFish instance.
*
* <p/> Usage example:
*
* <pre>
* // Create and start Glassfish
* GlassFish glassfish = GlassFishRuntime.bootstrap().newGlassFish();
* glassfish.start();
*
* // Access WebContainer
* WebContainer container = glassfish.getService(WebContainer.class);
*
* // Create and add {@link WebListener}
* WebListener listener = container.createWebListener("listener-1", HttpListener.class);
* listener.setPort(9090);
* container.addWebListener(listener);
*
* // Create and register web resources {@link Context}.
* File docroot = new File(path_to_web_resources);
* Context context = embedded.createContext(docroot);
* embedded.addContext(context, "contextroot_to_register");
*
* // Create and add {@link VirtualServer}
* VirtualServer virtualServer = (VirtualServer)
* embedded.createVirtualServer("embedded-server", new File(docroot_of_VirtualServer));
* VirtualServerConfig config = new VirtualServerConfig();
* config.setHostNames("localhost");
* virtualServer.setConfig(config);
* embedded.addVirtualServer(virtualServer);
* </pre>
*/
public interface WebContainer {
/**
* Sets the embedded configuration for this embedded instance.
* Such configuration should always override any xml based
* configuration.
*
* @param config the embedded instance configuration
*/
public void setConfiguration(WebContainerConfig config);
/**
* Creates a <tt>Context and configures it with the given
* docroot and classloader.
*
* <p>The classloader of the class on which this method is called
* will be used.
*
* <p>In order to access the new Context or any of its
* resources, the <tt>Context must be registered with a
* <tt>VirtualServer that has been started.
*
* @param docRoot the docroot of the <tt>Context
*
* @return the new <tt>Context
*
* @see VirtualServer#addContext
*/
public Context createContext(File docRoot);
/**
* Creates a <tt>Context, configures it with the given
* docroot and classloader, and registers it with the default
* <tt>VirtualServer.
*
* <p>The given classloader will be set as the thread's context
* classloader whenever the new <tt>Context or any of its
* resources are asked to process a request.
* If a <tt>null classloader is passed, the classloader of the
* class on which this method is called will be used.
*
* @param docRoot the docroot of the <tt>Context
* @param contextRoot the contextroot at which to register
* @param classLoader the classloader of the <tt>Context
*
* @return the new <tt>Context
*/
public Context createContext(File docRoot, String contextRoot,
ClassLoader classLoader);
/**
* Creates a <tt>Context and configures it with the given
* docroot and classloader.
*
* <p>The given classloader will be set as the thread's context
* classloader whenever the new <tt>Context or any of its
* resources are asked to process a request.
* If a <tt>null classloader is passed, the classloader of the
* class on which this method is called will be used.
*
* <p>In order to access the new Context or any of its
* resources, the <tt>Context must be registered with a
* <tt>VirtualServer that has been started.
*
* @param docRoot the docroot of the <tt>Context
* @param classLoader the classloader of the <tt>Context
*
* @return the new <tt>Context
*
* @see VirtualServer#addContext
*/
public Context createContext(File docRoot, ClassLoader classLoader);
/**
* Registers the given <tt>Context with all VirtualServer
* at the given context root.
*
* <p>If VirtualServer has already been started, the
* given <tt>context will be started as well.
*
* @param context the <tt>Context to register
* @param contextRoot the context root at which to register
*
* @throws ConfigException if a <tt>Context already exists
* at the given context root on <tt>VirtualServer
* @throws GlassFishException if the given <tt>context fails
* to be started
*/
public void addContext(Context context, String contextRoot)
throws ConfigException, GlassFishException;
/**
* Stops the given <tt>Context and removes it from all
* <tt>VirtualServer.
*
* @param context the <tt>Context to be stopped and removed
*
* @throws GlassFishException if an error occurs during the stopping
* or removal of the given <tt>context
*/
public void removeContext(Context context)
throws ConfigException, GlassFishException;
/**
* Creates a <tt>WebListener from the given class type and
* assigns the given id to it.
*
* @param id the id of the new <tt>WebListener
* @param c the class from which to instantiate the
* <tt>WebListener
*
* @return the new <tt>WebListener instance
*
* @throws IllegalAccessException if the given <tt>Class or
* its nullary constructor is not accessible.
* @throws InstantiationException if the given <tt>Class
* represents an abstract class, an interface, an array class,
* a primitive type, or void; or if the class has no nullary
* constructor; or if the instantiation fails for some other reason.
* @throws ExceptionInInitializerError if the initialization
* fails
* @throws SecurityException if a security manager, <i>s, is
* present and any of the following conditions is met:
*
* <ul>
* <li> invocation of {@link SecurityManager#checkMemberAccess
* s.checkMemberAccess(this, Member.PUBLIC)}</tt> denies
* creation of new instances of the given <tt>Class
* <li> the caller's class loader is not the same as or an
* ancestor of the class loader for the current class and
* invocation of <tt>{@link SecurityManager#checkPackageAccess
* s.checkPackageAccess()}</tt> denies access to the package
* of this class
* </ul>
*/
public <T extends WebListener> T createWebListener(String id, Class
Other Glassfish examples (source code examples)Here is a short list of links related to this Glassfish WebContainer.java source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.