org.mortbay.jetty.servlet
Class XMLConfiguration

java.lang.Object
  extended byorg.mortbay.jetty.servlet.XMLConfiguration
All Implemented Interfaces:
java.io.Serializable, WebApplicationContext.Configuration
Direct Known Subclasses:
PlusWebAppContext.Configuration

public class XMLConfiguration
extends java.lang.Object
implements WebApplicationContext.Configuration

Version:
$Revision: 1.19 $
Author:
gregw
See Also:
Serialized Form

Constructor Summary
XMLConfiguration()
           
 
Method Summary
 void configureClassPath()
          Configure ClassPath.
 void configureDefaults()
          Configure Defaults.
 void configureWebApp()
          Configure WebApp.
 WebApplicationContext getWebApplicationContext()
          Get the context on which the configuration is performed.
 WebApplicationHandler getWebApplicationHandler()
           
 void setWebApplicationContext(WebApplicationContext context)
          Set up a context on which to perform the configuration.
static XmlParser webXmlParser()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

XMLConfiguration

public XMLConfiguration()
Method Detail

webXmlParser

public static XmlParser webXmlParser()

setWebApplicationContext

public void setWebApplicationContext(WebApplicationContext context)
Description copied from interface: WebApplicationContext.Configuration
Set up a context on which to perform the configuration.

Specified by:
setWebApplicationContext in interface WebApplicationContext.Configuration
Parameters:
context -

getWebApplicationContext

public WebApplicationContext getWebApplicationContext()
Description copied from interface: WebApplicationContext.Configuration
Get the context on which the configuration is performed.

Specified by:
getWebApplicationContext in interface WebApplicationContext.Configuration
Returns:

getWebApplicationHandler

public WebApplicationHandler getWebApplicationHandler()

configureClassPath

public void configureClassPath()
                        throws java.lang.Exception
Configure ClassPath. This method is called before the context ClassLoader is created. Paths and libraries should be added to the context using the setClassPath, addClassPath and addClassPaths methods. The default implementation looks for WEB-INF/classes, WEB-INF/lib/*.zip and WEB-INF/lib/*.jar

Specified by:
configureClassPath in interface WebApplicationContext.Configuration
Throws:
java.lang.Exception

configureDefaults

public void configureDefaults()
                       throws java.lang.Exception
Description copied from interface: WebApplicationContext.Configuration
Configure Defaults. This method is called to intialize the context to the containers default configuration. Typically this would mean application of the webdefault.xml file. The default implementation does nothing.

Specified by:
configureDefaults in interface WebApplicationContext.Configuration
Throws:
java.lang.Exception

configureWebApp

public void configureWebApp()
                     throws java.lang.Exception
Description copied from interface: WebApplicationContext.Configuration
Configure WebApp. This method is called to apply the standard and vendor deployment descriptors. Typically this is web.xml and jetty-web.xml. The default implementation does nothing.

Specified by:
configureWebApp in interface WebApplicationContext.Configuration
Throws:
java.lang.Exception


Copyright © 2004 Mortbay Consulting Pty. Ltd. All Rights Reserved.