Package org.eclipse.jetty.xml
Interface ConfigurationProcessor
-
@Deprecated(since="2021-05-27") public interface ConfigurationProcessor
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.A ConfigurationProcessor for non XmlConfiguration format files.A file in non-XmlConfiguration file format may be processed by a
ConfigurationProcessor
instance that is returned from aConfigurationProcessorFactory
instance discovered by theServiceLoader
mechanism. This is used to allow spring configuration files to be used instead of jetty.xml
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description java.lang.Object
configure()
Deprecated.java.lang.Object
configure(java.lang.Object obj)
Deprecated.void
init(java.net.URL url, XmlParser.Node root, XmlConfiguration configuration)
Deprecated.useinit(Resource, XmlParser.Node, XmlConfiguration)
insteaddefault void
init(Resource resource, XmlParser.Node root, XmlConfiguration configuration)
Deprecated.Initialize a ConfigurationProcessor from provided Resource and XML
-
-
-
Method Detail
-
init
@Deprecated void init(java.net.URL url, XmlParser.Node root, XmlConfiguration configuration)
Deprecated.useinit(Resource, XmlParser.Node, XmlConfiguration)
instead
-
init
default void init(Resource resource, XmlParser.Node root, XmlConfiguration configuration)
Deprecated.Initialize a ConfigurationProcessor from provided Resource and XML- Parameters:
resource
- the resource being readroot
- the parsed XML root node for the resourceconfiguration
- the configuration being used (typically for ref IDs)
-
configure
java.lang.Object configure(java.lang.Object obj) throws java.lang.Exception
Deprecated.- Throws:
java.lang.Exception
-
configure
java.lang.Object configure() throws java.lang.Exception
Deprecated.- Throws:
java.lang.Exception
-
-