| org.jboss.aop.deployment.AspectDeployer
All known Subclasses: org.jboss.aop.deployment.AspectDeployer40, org.jboss.aop.deployment.AspectDeployer32,
Constructor Summary | |
public | AspectDeployer() Default CTOR used to set default values to the Suffixes and RelativeOrder
attributes. |
Method Summary | |
public boolean | accepts(DeploymentInfo di) Returns true if this deployer can deploy the given DeploymentInfo. | public void | create(DeploymentInfo di) Describe create method here. | public void | destroy(DeploymentInfo di) Describe destroy method here. | protected ObjectName | getObjectName(MBeanServer server, ObjectName name) | public void | init(DeploymentInfo di) Describe init method here. | protected void | initializeMainDeployer() Set the suffixes and relative order attributes. | public void | start(DeploymentInfo di) The start method starts all the mbeans in this DeploymentInfo.. | protected void | startService() The startService method gets the mbeanProxies for MainDeployer
and ServiceController, used elsewhere. | public void | stop(DeploymentInfo di) Undeploys the package at the url string specified. |
AspectDeployer | public AspectDeployer()(Code) | | Default CTOR used to set default values to the Suffixes and RelativeOrder
attributes. Those are read at subdeployer registration time by the MainDeployer
to alter its SuffixOrder.
|
accepts | public boolean accepts(DeploymentInfo di)(Code) | | Returns true if this deployer can deploy the given DeploymentInfo.
True if this deployer can deploy the given DeploymentInfo. |
create | public void create(DeploymentInfo di) throws DeploymentException(Code) | | Describe create method here.
Parameters: di - a DeploymentInfo value throws: DeploymentException - if an error occurs |
destroy | public void destroy(DeploymentInfo di)(Code) | | Describe destroy method here.
Parameters: di - a DeploymentInfo value |
init | public void init(DeploymentInfo di) throws DeploymentException(Code) | | Describe init method here.
Parameters: di - a DeploymentInfo value throws: DeploymentException - if an error occurs |
initializeMainDeployer | protected void initializeMainDeployer()(Code) | | Set the suffixes and relative order attributes.
Those are read at subdeployer registration time by the MainDeployer
to update its SuffixOrder list.
|
start | public void start(DeploymentInfo di) throws DeploymentException(Code) | | The start method starts all the mbeans in this DeploymentInfo..
Parameters: di - a DeploymentInfo value throws: DeploymentException - if an error occurs |
startService | protected void startService() throws Exception(Code) | | The startService method gets the mbeanProxies for MainDeployer
and ServiceController, used elsewhere.
throws: Exception - if an error occurs |
stop | public void stop(DeploymentInfo di)(Code) | | Undeploys the package at the url string specified. This will: Undeploy
packages depending on this one. Stop, destroy, and unregister all the
specified mbeans Unload this package and packages this package deployed
via the classpath tag. Keep track of packages depending on this one that
we undeployed so that they can be redeployed should this one be
redeployed.
Parameters: di - the DeploymentInfo value to stop. |
|
|