User: user57
Date: 02/01/02 20:00:59
Modified: src/main/org/jboss/metadata BeanMetaData.java
Log:
o migrated all components to a new JMX domain name model. jboss.system
is now where to core/spine components live. moved all components that
were in JBOSS-SYSTEM that did not move into a jboss.* domain into
jboss (where the server is now registered). The point was to limit the
members of jboss.system to core bits only.
o Created org.jboss.system.Server, which does the work of initialization
that org.jboss.Main used to do. Main now only parses the command line,
sets up basic legecy properties and creates a Server instance.
o Moved functionality of Shutdown (component not cl tool) into Server (
which is bound as jboss.system:service=Server)
o Moved more Runtime access from Info into Server. Exposed memory info
as attributes.
o Logging a WARN everywhere that uses System.getProperty("jboss.system.home")
as that should go away soon/eventually.
o Initialized the invokerMap in the harmi impl to avoid NPE
o Made getopt.jar a member of the lib/* dir instead of adding it to the
run.jar and shutdown.jars each time.
o Minor cosmetic changes along the way.
Revision Changes Path
1.34 +9 -8 jboss/src/main/org/jboss/metadata/BeanMetaData.java
Index: BeanMetaData.java
===================================================================
RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/metadata/BeanMetaData.java,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- BeanMetaData.java 2001/12/31 05:11:56 1.33
+++ BeanMetaData.java 2002/01/03 04:00:59 1.34
@@ -4,6 +4,7 @@
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
+
package org.jboss.metadata;
import java.util.Iterator;
@@ -30,7 +31,7 @@
* @author <a href="mailto:[EMAIL PROTECTED]">Scott Stark</a>.
* @author <a href="mailto:[EMAIL PROTECTED]">Ole Husgaard</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Bill Burke</a>
- * @version $Revision: 1.33 $
+ * @version $Revision: 1.34 $
*
* <p><b>Revisions:</b><br>
* <p><b>2001/10/16: billb</b>
@@ -106,13 +107,13 @@
/** what JRMP invokers do we use? **/
private String homeInvoker = null;
private String beanInvoker = null;
- public static final String DEFAULT_HOME_INVOKER =
"JBOSS-SYSTEM:service=invoker,type=jrmp";
- public static final String DEFAULT_BEAN_INVOKER =
"JBOSS-SYSTEM:service=invoker,type=jrmp";
- public static final String DEFAULT_CLUSTERED_HOME_INVOKER =
"JBOSS-SYSTEM:service=invoker,type=jrmpha,partition=DefaultPartition,load-balance=RoundRobin";
- public static final String DEFAULT_CLUSTERED_SLSB_INVOKER =
"JBOSS-SYSTEM:service=invoker,type=jrmpha,partition=DefaultPartition,load-balance=RoundRobin";
- public static final String DEFAULT_CLUSTERED_SFSB_INVOKER =
"JBOSS-SYSTEM:service=invoker,type=jrmpha,partition=DefaultPartition,load-balance=FirstAvailable";
- public static final String DEFAULT_CLUSTERED_EB_INVOKER =
"JBOSS-SYSTEM:service=invoker,type=jrmpha,partition=DefaultPartition,load-balance=FirstAvailable";
- public static final String DEFAULT_CLUSTERED_BEAN_INVOKER =
"JBOSS-SYSTEM:service=invoker,type=jrmpha,partition=DefaultPartition,load-balance=FirstAvailable";
+ public static final String DEFAULT_HOME_INVOKER =
"jboss:service=invoker,type=jrmp";
+ public static final String DEFAULT_BEAN_INVOKER =
"jboss:service=invoker,type=jrmp";
+ public static final String DEFAULT_CLUSTERED_HOME_INVOKER =
"jboss:service=invoker,type=jrmpha,partition=DefaultPartition,load-balance=RoundRobin";
+ public static final String DEFAULT_CLUSTERED_SLSB_INVOKER =
"jboss:service=invoker,type=jrmpha,partition=DefaultPartition,load-balance=RoundRobin";
+ public static final String DEFAULT_CLUSTERED_SFSB_INVOKER =
"jboss:service=invoker,type=jrmpha,partition=DefaultPartition,load-balance=FirstAvailable";
+ public static final String DEFAULT_CLUSTERED_EB_INVOKER =
"jboss:service=invoker,type=jrmpha,partition=DefaultPartition,load-balance=FirstAvailable";
+ public static final String DEFAULT_CLUSTERED_BEAN_INVOKER =
"jboss:service=invoker,type=jrmpha,partition=DefaultPartition,load-balance=FirstAvailable";
/** The cluster-config element info */
private ClusterConfigMetaData clusterConfig = null;
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development