User: d_jencks
Date: 02/02/21 20:24:54
Modified: src/main/org/jboss/ha/framework/server
FarmMemberService.java
Log:
Made classes visible across all subpackages in a deployment such as an ear. (bug
520676. Restructured deployment process to involve 3 phases: classloading, create
where components set up their externally visible aspects, and start where components
connect to other components. Renamed Application to EjbModule.
Revision Changes Path
1.7 +5 -3
jbossmx/src/main/org/jboss/ha/framework/server/FarmMemberService.java
Index: FarmMemberService.java
===================================================================
RCS file:
/cvsroot/jboss/jbossmx/src/main/org/jboss/ha/framework/server/FarmMemberService.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- FarmMemberService.java 28 Jan 2002 22:42:17 -0000 1.6
+++ FarmMemberService.java 22 Feb 2002 04:24:54 -0000 1.7
@@ -43,7 +43,7 @@
* </ul>
*
* @author <a href="mailto:[EMAIL PROTECTED]">Andreas Schaefer</a>
- * @version $Revision: 1.6 $ <p>
+ * @version $Revision: 1.7 $ <p>
*
* <b>Revisions:</b> <p>
*
@@ -90,9 +90,11 @@
public void init(DeploymentInfo sdi) throws DeploymentException {};
- public void deploy(DeploymentInfo sdi) throws DeploymentException {};
+ public void create(DeploymentInfo sdi) throws DeploymentException {};
+ public void start(DeploymentInfo sdi) throws DeploymentException {};
- public void undeploy(DeploymentInfo sdi) throws DeploymentException {};
+ public void stop(DeploymentInfo sdi) throws DeploymentException {};
+ public void destroy(DeploymentInfo sdi) throws DeploymentException {};
/**
* FIXME FOR COMPILATION ONLY
*/
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development