Package org.jboss.wsf.spi.deployment
Interface Deployment
-
- All Superinterfaces:
Extensible
- All Known Subinterfaces:
ArchiveDeployment
public interface Deployment extends Extensible
A general web service deployment.- Author:
- Thomas.Diesler@jboss.com
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClassLoadergetClassLoader()Get the class loader for this deploymentServicegetService()Get the service associated with this deploymentStringgetSimpleName()Get the identifier for this deployment-
Methods inherited from interface org.jboss.wsf.spi.deployment.Extensible
addAttachment, getAttachment, getAttachments, getProperties, getProperty, removeAttachment, removeProperty, setProperties, setProperty
-
-
-
-
Method Detail
-
getSimpleName
String getSimpleName()
Get the identifier for this deployment- Returns:
- deployment identifier
-
getClassLoader
ClassLoader getClassLoader()
Get the class loader for this deployment- Returns:
- class loader for the deployment
-
getService
Service getService()
Get the service associated with this deployment- Returns:
- service for the deployment
-
-