01: /*
02: * JBoss, Home of Professional Open Source.
03: * Copyright 2006, Red Hat Middleware LLC, and individual contributors
04: * as indicated by the @author tags. See the copyright.txt file in the
05: * distribution for a full listing of individual contributors.
06: *
07: * This is free software; you can redistribute it and/or modify it
08: * under the terms of the GNU Lesser General Public License as
09: * published by the Free Software Foundation; either version 2.1 of
10: * the License, or (at your option) any later version.
11: *
12: * This software is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15: * Lesser General Public License for more details.
16: *
17: * You should have received a copy of the GNU Lesser General Public
18: * License along with this software; if not, write to the Free
19: * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20: * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21: */
22: package org.jboss.aop.deployment;
23:
24: /**
25: * MBean interface.
26: */
27: public interface AspectDeployerMBean extends
28: org.jboss.deployment.SubDeployerMBean {
29:
30: //default object name
31: public static final javax.management.ObjectName OBJECT_NAME = org.jboss.mx.util.ObjectNameFactory
32: .create("jboss.aspect:AspectDeployer");
33:
34: /**
35: * Returns true if this deployer can deploy the given DeploymentInfo.
36: * @return True if this deployer can deploy the given DeploymentInfo.
37: */
38: boolean accepts(org.jboss.deployment.DeploymentInfo di);
39:
40: /**
41: * Describe <code>init</code> method here.
42: * @param di a <code>DeploymentInfo</code> value
43: * @throws DeploymentException if an error occurs
44: */
45: void init(org.jboss.deployment.DeploymentInfo di)
46: throws org.jboss.deployment.DeploymentException;
47:
48: /**
49: * Describe <code>create</code> method here.
50: * @param di a <code>DeploymentInfo</code> value
51: * @throws DeploymentException if an error occurs
52: */
53: void create(org.jboss.deployment.DeploymentInfo di)
54: throws org.jboss.deployment.DeploymentException;
55:
56: /**
57: * The <code>start</code> method starts all the mbeans in this DeploymentInfo..
58: * @param di a <code>DeploymentInfo</code> value
59: * @throws DeploymentException if an error occurs
60: */
61: void start(org.jboss.deployment.DeploymentInfo di)
62: throws org.jboss.deployment.DeploymentException;
63:
64: /**
65: * 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.
66: * @param di the <code>DeploymentInfo</code> value to stop.
67: */
68: void stop(org.jboss.deployment.DeploymentInfo di);
69:
70: /**
71: * Describe <code>destroy</code> method here.
72: * @param di a <code>DeploymentInfo</code> value
73: */
74: void destroy(org.jboss.deployment.DeploymentInfo di);
75:
76: }
|