Package org.apache.axis2.deployment
Class AbstractServiceBuilderExtension
- java.lang.Object
-
- org.apache.axis2.deployment.AbstractServiceBuilderExtension
-
- All Implemented Interfaces:
ServiceBuilderExtension
- Direct Known Subclasses:
JAXWSServiceBuilderExtension
,WSDLServiceBuilderExtension
public abstract class AbstractServiceBuilderExtension extends Object implements ServiceBuilderExtension
The Class AbstractServiceBuilderExtension is abstract class that can be used to write new ServiceBuilderExtensions.
- Since:
- 1.7.0
-
-
Constructor Summary
Constructors Constructor Description AbstractServiceBuilderExtension()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AxisConfiguration
getAxisConfiguration()
Gets the axis configuration.ConfigurationContext
getConfigurationContext()
Gets the configuration context.String
getDirectory()
Gets the directory.void
init(ConfigurationContext configurationContext)
Initialize ServiceBuilderExtension instance.void
setDirectory(String directory)
Sets the directory.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.axis2.deployment.ServiceBuilderExtension
buildAxisServices
-
-
-
-
Method Detail
-
init
public void init(ConfigurationContext configurationContext)
Description copied from interface:ServiceBuilderExtension
Initialize ServiceBuilderExtension instance. This method should be called when Initializing the base Deployer.- Specified by:
init
in interfaceServiceBuilderExtension
- Parameters:
configurationContext
- the configuration context
-
getDirectory
public String getDirectory()
Gets the directory.- Returns:
- the directory
-
setDirectory
public void setDirectory(String directory)
Sets the directory.- Specified by:
setDirectory
in interfaceServiceBuilderExtension
- Parameters:
directory
- the new directory
-
getConfigurationContext
public ConfigurationContext getConfigurationContext()
Gets the configuration context.- Returns:
- the configuration context
-
getAxisConfiguration
public AxisConfiguration getAxisConfiguration()
Gets the axis configuration.- Returns:
- the axis configuration
-
-