[jboss-cvs] JBossRemoting/src/main/org/jboss/remoting/detection/jndi ...

Ron Sigal ron_sigal at yahoo.com
Wed Oct 11 16:20:13 EDT 2006


  User: rsigal  
  Date: 06/10/11 16:20:13

  Modified:    src/main/org/jboss/remoting/detection/jndi 
                        JNDIDetector.java
  Log:
  JBREM-581, JBREM-603: Added constructor that gets configuration map parameter.
  
  Revision  Changes    Path
  1.14      +11 -1     JBossRemoting/src/main/org/jboss/remoting/detection/jndi/JNDIDetector.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: JNDIDetector.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/main/org/jboss/remoting/detection/jndi/JNDIDetector.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -b -r1.13 -r1.14
  --- JNDIDetector.java	19 Jul 2006 16:39:17 -0000	1.13
  +++ JNDIDetector.java	11 Oct 2006 20:20:13 -0000	1.14
  @@ -38,6 +38,7 @@
   import javax.naming.NamingEnumeration;
   import javax.naming.NamingException;
   import java.net.InetAddress;
  +import java.util.Map;
   import java.util.Properties;
   
   /**
  @@ -90,6 +91,15 @@
   
      protected final Logger log = Logger.getLogger(getClass());
   
  +   public JNDIDetector()
  +   {
  +   }
  +   
  +   public JNDIDetector(Map config)
  +   {
  +      super(config);
  +   }
  +   
      /**
       * Gets the port used to connect to the JNDI Server.
       *
  
  
  



More information about the jboss-cvs-commits mailing list