org.openqa.jetty.xml
Class XmlConfiguration

java.lang.Object
  extended by org.openqa.jetty.xml.XmlConfiguration

public class XmlConfiguration
extends Object

Configure Objects from XML. This class reads an XML file conforming to the configure.dtd DTD and uses it to configure and object by calling set, put or other methods on the object.

Version:
$Id: XmlConfiguration.java,v 1.28 2005/08/13 08:12:14 gregwilkins Exp $
Author:
Greg Wilkins (gregw)

Constructor Summary
XmlConfiguration(InputStream configuration)
          Constructor.
XmlConfiguration(String configuration)
          Constructor.
XmlConfiguration(URL configuration)
          Constructor.
 
Method Summary
 void configure(Object obj)
          Configure an object.
static void main(String[] arg)
           
 Object newInstance()
          Create a new object and configure it.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

XmlConfiguration

public XmlConfiguration(URL configuration)
                 throws SAXException,
                        IOException
Constructor. Reads the XML configuration file.

Parameters:
configuration -
Throws:
SAXException
IOException

XmlConfiguration

public XmlConfiguration(String configuration)
                 throws SAXException,
                        IOException
Constructor.

Parameters:
configuration - String of XML configuration commands excluding the normal XML preamble. The String should start with a " Throws:
SAXException
IOException

XmlConfiguration

public XmlConfiguration(InputStream configuration)
                 throws SAXException,
                        IOException
Constructor.

Parameters:
configuration - An input stream containing a complete e.g. configuration file
Throws:
SAXException
IOException
Method Detail

configure

public void configure(Object obj)
               throws ClassNotFoundException,
                      NoSuchMethodException,
                      InvocationTargetException,
                      InstantiationException,
                      IllegalAccessException
Configure an object. If the object is of the approprate class, the XML configuration script is applied to the object.

Parameters:
obj - The object to be configured.
Throws:
ClassNotFoundException
NoSuchMethodException
InvocationTargetException
IllegalAccessException
InstantiationException

newInstance

public Object newInstance()
                   throws ClassNotFoundException,
                          NoSuchMethodException,
                          InvocationTargetException,
                          InstantiationException,
                          IllegalAccessException
Create a new object and configure it. A new object is created and configured.

Returns:
The newly created configured object.
Throws:
ClassNotFoundException
NoSuchMethodException
InvocationTargetException
InstantiationException
IllegalAccessException

main

public static void main(String[] arg)


Copyright © 2012. All Rights Reserved.