Uses of Class
org.apache.avalon.framework.configuration.ConfigurationException

Packages that use ConfigurationException
org.apache.avalon.framework.configuration Component configuration interfaces and XML-based implementations. 
org.apache.avalon.framework.container Utilities supporting execution of component lifecycle stages. 
org.apache.avalon.framework.parameters Interfaces supporting the supply of flat configuration information. 
 

Uses of ConfigurationException in org.apache.avalon.framework.configuration
 

Methods in org.apache.avalon.framework.configuration that throw ConfigurationException
 Configuration DefaultConfigurationBuilder.build(org.xml.sax.InputSource input)
          Build a configuration object using an XML InputSource object
 Configuration DefaultConfigurationBuilder.build(java.io.InputStream inputStream)
          Build a configuration object using an InputStream.
 Configuration DefaultConfigurationBuilder.build(java.io.InputStream inputStream, java.lang.String systemId)
          Build a configuration object using an InputStream; supplying a systemId to make messages about all kinds of errors more meaningfull.
 Configuration DefaultConfigurationBuilder.build(java.lang.String uri)
          Build a configuration object using an URI
 Configuration DefaultConfigurationBuilder.buildFromFile(java.io.File file)
          Build a configuration object from a file using a File object.
 Configuration DefaultConfigurationBuilder.buildFromFile(java.lang.String filename)
          Build a configuration object from a file using a filename.
 void Configurable.configure(Configuration configuration)
          Pass the Configuration to the Configurable class.
 java.lang.String DefaultConfiguration.getAttribute(java.lang.String name)
          Returns the value of the attribute specified by its name as a String.
 java.lang.String Configuration.getAttribute(java.lang.String paramName)
          Return the value of specified attribute.
 boolean AbstractConfiguration.getAttributeAsBoolean(java.lang.String name)
          Returns the value of the attribute specified by its name as a boolean.
 boolean Configuration.getAttributeAsBoolean(java.lang.String paramName)
          Return the boolean value of the specified parameter contained in this node.
 float AbstractConfiguration.getAttributeAsFloat(java.lang.String name)
          Returns the value of the attribute specified by its name as a float.
 float Configuration.getAttributeAsFloat(java.lang.String paramName)
          Return the float value of the specified parameter contained in this node.
 int AbstractConfiguration.getAttributeAsInteger(java.lang.String name)
          Returns the value of the attribute specified by its name as an int.
 int Configuration.getAttributeAsInteger(java.lang.String paramName)
          Return the int value of the specified attribute contained in this node.
 long AbstractConfiguration.getAttributeAsLong(java.lang.String name)
          Returns the value of the attribute specified by its name as a long.
 long Configuration.getAttributeAsLong(java.lang.String name)
          Returns the value of the attribute specified by its name as a long.
 java.lang.String DefaultConfiguration.getNamespace()
          Returns the namespace of this configuration element
 java.lang.String Configuration.getNamespace()
          Returns a string indicating which namespace this Configuration node belongs to.
protected abstract  java.lang.String AbstractConfiguration.getPrefix()
          Returns the prefix of the namespace.
protected  java.lang.String DefaultConfiguration.getPrefix()
          Returns the prefix of the namespace
 java.lang.String DefaultConfiguration.getValue()
          Returns the value of the configuration element as a String.
 java.lang.String Configuration.getValue()
          Return the String value of the node.
 boolean AbstractConfiguration.getValueAsBoolean()
          Returns the value of the configuration element as a boolean.
 boolean Configuration.getValueAsBoolean()
          Return the boolean value of the node.
 float AbstractConfiguration.getValueAsFloat()
          Returns the value of the configuration element as a float.
 float Configuration.getValueAsFloat()
          Return the float value of the node.
 int AbstractConfiguration.getValueAsInteger()
          Returns the value of the configuration element as an int.
 int Configuration.getValueAsInteger()
          Return the int value of the node.
 long AbstractConfiguration.getValueAsLong()
          Returns the value of the configuration element as a long.
 long Configuration.getValueAsLong()
          Return the long value of the node.
 void Reconfigurable.reconfigure(Configuration configuration)
          Describe reconfigure method here.
 java.lang.String DefaultConfigurationSerializer.serialize(Configuration source)
          Serialize the configuration object to a string
 void DefaultConfigurationSerializer.serialize(org.xml.sax.ContentHandler handler, Configuration source)
          Serialize the configuration to a ContentHandler
 void DefaultConfigurationSerializer.serialize(java.io.OutputStream outputStream, Configuration source)
          Serialize the configuration object to an output stream.
 void DefaultConfigurationSerializer.serialize(java.lang.String uri, Configuration source)
          Serialize the configuration object to an output stream derived from an URI.
protected  void DefaultConfigurationSerializer.serializeElement(org.xml.sax.ContentHandler handler, org.xml.sax.helpers.NamespaceSupport namespaceSupport, Configuration element)
          Serialize each Configuration element.
 void DefaultConfigurationSerializer.serializeToFile(java.io.File file, Configuration source)
          Serialize the configuration object to a file using a File object.
 void DefaultConfigurationSerializer.serializeToFile(java.lang.String filename, Configuration source)
          Serialize the configuration object to a file using a filename.
 

Uses of ConfigurationException in org.apache.avalon.framework.container
 

Methods in org.apache.avalon.framework.container that throw ConfigurationException
static void ContainerUtil.configure(java.lang.Object object, Configuration configuration)
          Configure specified object if it implements the Configurable interface.
 

Uses of ConfigurationException in org.apache.avalon.framework.parameters
 

Methods in org.apache.avalon.framework.parameters that throw ConfigurationException
static Parameters Parameters.fromConfiguration(Configuration configuration)
          Create a Parameters object from a Configuration object.
static Parameters Parameters.fromConfiguration(Configuration configuration, java.lang.String elementName)
          Create a Parameters object from a Configuration object using the supplied element name.