Package org.jboss.wsf.spi.deployment
Interface DeploymentAspectManager
-
public interface DeploymentAspectManagerA general service deployment manager.- Since:
- 20-Apr-2007
- Author:
- Thomas.Diesler@jboss.com
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddeploy(Deployment dep)Deploy a web serviceList<DeploymentAspect>getDeploymentAspects()Get the list of registered deployment aspectsStringgetName()Get the name for this aspect managervoidsetDeploymentAspects(List<DeploymentAspect> aspects)Set the list of registered deployment aspectsvoidundeploy(Deployment dep)Undeploy a web service
-
-
-
Method Detail
-
getName
String getName()
Get the name for this aspect manager- Returns:
- name of aspect manager
-
getDeploymentAspects
List<DeploymentAspect> getDeploymentAspects()
Get the list of registered deployment aspects- Returns:
- list of registered deployment aspects
-
setDeploymentAspects
void setDeploymentAspects(List<DeploymentAspect> aspects)
Set the list of registered deployment aspects- Parameters:
aspects- set of registered deployment aspects
-
deploy
void deploy(Deployment dep)
Deploy a web service- Parameters:
dep- web service to deploy
-
undeploy
void undeploy(Deployment dep)
Undeploy a web service- Parameters:
dep- web service deployment
-
-