[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/il/jvm JVMServerILService.java

2002-02-01 Thread Christian Riege

  User: lqd 
  Date: 02/02/01 19:54:19

  Modified:src/main/org/jboss/mq/il/jvm JVMServerILService.java
  Log:
  remove wildcard import statements
  
  Revision  ChangesPath
  1.7   +1 -2  jbossmq/src/main/org/jboss/mq/il/jvm/JVMServerILService.java
  
  Index: JVMServerILService.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/jvm/JVMServerILService.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- JVMServerILService.java   2001/11/10 21:38:04 1.6
  +++ JVMServerILService.java   2002/02/02 03:54:19 1.7
  @@ -7,7 +7,6 @@
   package org.jboss.mq.il.jvm;
   
   import java.util.Properties;
  -import javax.management.*;
   import javax.naming.InitialContext;
   import org.jboss.mq.GenericConnectionFactory;
   
  @@ -24,7 +23,7 @@
* @author Hiram Chirino ([EMAIL PROTECTED])
* @author David Maplesden ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.6 $
  + * @version$Revision: 1.7 $
*/
   public class JVMServerILService extends org.jboss.mq.il.ServerILJMXService 
implements JVMServerILServiceMBean {
 
  
  
  

___
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development



[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/il/jvm JVMServerILService.java

2001-10-20 Thread Hiram Chirino

  User: chirino 
  Date: 01/10/20 22:38:13

  Modified:src/main/org/jboss/mq/il/jvm JVMServerILService.java
  Log:
  Feature add:
  You can now setup a JBossMQ connection with out using JNDI.
  The ConnectionTestCase has a test case in case your interested on how it
  is done.
  
  Revision  ChangesPath
  1.5   +4 -3  jbossmq/src/main/org/jboss/mq/il/jvm/JVMServerILService.java
  
  Index: JVMServerILService.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/jvm/JVMServerILService.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- JVMServerILService.java   2001/09/27 03:27:43 1.4
  +++ JVMServerILService.java   2001/10/21 05:38:13 1.5
  @@ -14,6 +14,7 @@
   import org.jboss.mq.il.ServerIL;
   import org.jboss.mq.il.ServerILJMXService;
   import org.jboss.mq.server.JMSServer;
  +import org.jboss.mq.il.ServerILFactory;
   
   import org.jboss.system.ServiceMBeanSupport;
   
  @@ -23,7 +24,7 @@
* @author Hiram Chirino ([EMAIL PROTECTED])
* @author David Maplesden ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.4 $
  + * @version$Revision: 1.5 $
*/
   public class JVMServerILService extends org.jboss.mq.il.ServerILJMXService 
implements JVMServerILServiceMBean {
 
  @@ -56,8 +57,8 @@
   */
  public java.util.Properties getClientConnectionProperties() {
 Properties rc = super.getClientConnectionProperties();
  -  rc.setProperty( GenericConnectionFactory.CLIENT_IL_SERVICE_KEY, 
org.jboss.mq.il.jvm.JVMClientILService );
  -  rc.setProperty( GenericConnectionFactory.SERVER_IL_FACTORY_KEY, 
org.jboss.mq.il.jvm.JVMServerILFactory );
  +  rc.setProperty( ServerILFactory.CLIENT_IL_SERVICE_KEY, 
org.jboss.mq.il.jvm.JVMClientILService );
  +  rc.setProperty( ServerILFactory.SERVER_IL_FACTORY_KEY, 
org.jboss.mq.il.jvm.JVMServerILFactory );
 return rc;
  }
   
  
  
  

___
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development



[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/il/jvm JVMServerILService.java

2001-09-26 Thread Hiram Chirino

  User: chirino 
  Date: 01/09/26 20:27:43

  Modified:src/main/org/jboss/mq/il/jvm JVMServerILService.java
  Log:
  Due to popular demand the PingThread is now shared by all the connections
  in one VM.  And the the ping period is configurable at each ConnectionFactory.
  
  Revision  ChangesPath
  1.4   +3 -4  jbossmq/src/main/org/jboss/mq/il/jvm/JVMServerILService.java
  
  Index: JVMServerILService.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/jvm/JVMServerILService.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- JVMServerILService.java   2001/08/30 02:35:54 1.3
  +++ JVMServerILService.java   2001/09/27 03:27:43 1.4
  @@ -23,9 +23,10 @@
* @author Hiram Chirino ([EMAIL PROTECTED])
* @author David Maplesden ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.3 $
  + * @version$Revision: 1.4 $
*/
   public class JVMServerILService extends org.jboss.mq.il.ServerILJMXService 
implements JVMServerILServiceMBean {
  +  
  /**
   *  Gives this JMX service a name.
   *
  @@ -54,7 +55,7 @@
   * @returnThe ClientConnectionProperties value
   */
  public java.util.Properties getClientConnectionProperties() {
  -  Properties rc = new Properties();
  +  Properties rc = super.getClientConnectionProperties();
 rc.setProperty( GenericConnectionFactory.CLIENT_IL_SERVICE_KEY, 
org.jboss.mq.il.jvm.JVMClientILService );
 rc.setProperty( GenericConnectionFactory.SERVER_IL_FACTORY_KEY, 
org.jboss.mq.il.jvm.JVMServerILFactory );
 return rc;
  @@ -67,9 +68,7 @@
   */
  public void startService()
 throws Exception {
  -
 bindJNDIReferences();
  -
  }
   
  /**
  
  
  

___
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development



[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/il/jvm JVMServerILService.java

2001-08-29 Thread marc fleury

  User: mnf999  
  Date: 01/08/29 19:35:54

  Modified:src/main/org/jboss/mq/il/jvm JVMServerILService.java
  Log:
  just package names, nothing more
  
  Revision  ChangesPath
  1.3   +2 -2  jbossmq/src/main/org/jboss/mq/il/jvm/JVMServerILService.java
  
  Index: JVMServerILService.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/jvm/JVMServerILService.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- JVMServerILService.java   2001/08/17 03:04:03 1.2
  +++ JVMServerILService.java   2001/08/30 02:35:54 1.3
  @@ -15,7 +15,7 @@
   import org.jboss.mq.il.ServerILJMXService;
   import org.jboss.mq.server.JMSServer;
   
  -import org.jboss.util.ServiceMBeanSupport;
  +import org.jboss.system.ServiceMBeanSupport;
   
   /**
*  Implements the ServerILJMXService which is used to manage the JVM IL.
  @@ -23,7 +23,7 @@
* @author Hiram Chirino ([EMAIL PROTECTED])
* @author David Maplesden ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.3 $
*/
   public class JVMServerILService extends org.jboss.mq.il.ServerILJMXService 
implements JVMServerILServiceMBean {
  /**
  
  
  

___
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development