Package org.jboss.wsf.spi.deployment
Interface DeploymentAspect
-
public interface DeploymentAspectA deployment aspect that does nothing. A deployment aspects can require/provide a set of string conditions. This determines the order of deployment aspects in the deployment aspect manager.- Since:
- 20-Apr-2007
- Author:
- Thomas.Diesler@jboss.com
-
-
Field Summary
Fields Modifier and Type Field Description static StringLAST_DEPLOYMENT_ASPECT
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClassLoadergetLoader()StringgetProvides()Set<String>getProvidesAsSet()intgetRelativeOrder()StringgetRequires()Set<String>getRequiresAsSet()booleanisLast()voidsetLast(boolean isLast)voidsetProvides(String provides)voidsetRelativeOrder(int relativeOrder)voidsetRequires(String requires)voidstart(Deployment dep)voidstop(Deployment dep)
-
-
-
Field Detail
-
LAST_DEPLOYMENT_ASPECT
static final String LAST_DEPLOYMENT_ASPECT
- See Also:
- Constant Field Values
-
-
Method Detail
-
setLast
void setLast(boolean isLast)
-
isLast
boolean isLast()
-
getProvides
String getProvides()
-
setProvides
void setProvides(String provides)
-
getRequires
String getRequires()
-
setRequires
void setRequires(String requires)
-
setRelativeOrder
void setRelativeOrder(int relativeOrder)
-
getRelativeOrder
int getRelativeOrder()
-
start
void start(Deployment dep)
-
stop
void stop(Deployment dep)
-
getLoader
ClassLoader getLoader()
-
-