You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wsif-dev@ws.apache.org by wh...@apache.org on 2003/02/12 15:01:08 UTC

cvs commit: xml-axis-wsif/java/test/util TestUtilities.java

whitlock    2003/02/12 06:01:08

  Modified:    java/test/util TestUtilities.java
  Log:
  16993: Add in a MIME_LISTENER
  
  Revision  Changes    Path
  1.20      +6 -0      xml-axis-wsif/java/test/util/TestUtilities.java
  
  Index: TestUtilities.java
  ===================================================================
  RCS file: /home/cvs/xml-axis-wsif/java/test/util/TestUtilities.java,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- TestUtilities.java	31 Jan 2003 11:17:16 -0000	1.19
  +++ TestUtilities.java	12 Feb 2003 14:01:07 -0000	1.20
  @@ -107,6 +107,7 @@
       public static final int ASYNC_LISTENER = 4;
       public static final int NATIVEJMS_LISTENER = 8;
       public static final int INOUT_LISTENER = 16;
  +    public static final int MIME_LISTENER = 32;
       // ALL_LISTENERS doesn't include the INOUT_LISTENER because 
       // inout and addressbook both listen on the same queue.
       public static final int ALL_LISTENERS = 15;
  @@ -266,6 +267,11 @@
   
               if ((which & INOUT_LISTENER) > 0) {
                   jmsAb = new BridgeThread("AddressBook", "Inout");
  +                jmsAb.start();
  +            }
  +
  +            if ((which & MIME_LISTENER) > 0) {
  +                jmsAb = new BridgeThread("AddressBook", "Mime");
                   jmsAb.start();
               }