| |
|
| java.lang.Object org.ow2.easybeans.server.EmbeddedConfigurator
EmbeddedConfigurator | final public class EmbeddedConfigurator (Code) | | Allows to configure an embedded server with an XML configuration file.
author: Florent Benoit |
Method Summary | |
public static Embedded | create(URL xmlConfigurationURL) Create and configure an embedded server with the given XML configuration
file URL.
Parameters: xmlConfigurationURL - the URL to the xml configuration file. | public static Embedded | create() Create and configure an embedded server with the XML configuration file
URL found in classpath. | public static Embedded | init(Embedded embedded, URL xmlConfigurationURL) Configure the given embedded server with the given XML configuration file
URL.
Parameters: embedded - the embedded server to configure. Parameters: xmlConfigurationURL - the URL to the xml configuration file. |
create | public static Embedded create(URL xmlConfigurationURL) throws EmbeddedException(Code) | | Create and configure an embedded server with the given XML configuration
file URL.
Parameters: xmlConfigurationURL - the URL to the xml configuration file. the configured embedded instance. throws: EmbeddedException - if the embedded configuration fails. |
create | public static Embedded create() throws EmbeddedException(Code) | | Create and configure an embedded server with the XML configuration file
URL found in classpath.
the configured embedded instance. throws: EmbeddedException - if the embedded configuration fails. |
init | public static Embedded init(Embedded embedded, URL xmlConfigurationURL) throws EmbeddedException(Code) | | Configure the given embedded server with the given XML configuration file
URL.
Parameters: embedded - the embedded server to configure. Parameters: xmlConfigurationURL - the URL to the xml configuration file. the configured embedded instance. throws: EmbeddedException - if the embedded configuration fails. |
|
|
|