You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fx-dev@ws.apache.org by ja...@apache.org on 2004/12/17 13:43:02 UTC

cvs commit: ws-fx/sandesha/src/org/apache/sandesha Constants.java

jaliya      2004/12/17 04:43:02

  Modified:    sandesha/src/org/apache/sandesha Constants.java
  Log:
  DEFAULT_URI is used when there are no action specified by the user
  
  Revision  Changes    Path
  1.20      +7 -0      ws-fx/sandesha/src/org/apache/sandesha/Constants.java
  
  Index: Constants.java
  ===================================================================
  RCS file: /home/cvs/ws-fx/sandesha/src/org/apache/sandesha/Constants.java,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- Constants.java	22 Nov 2004 09:54:36 -0000	1.19
  +++ Constants.java	17 Dec 2004 12:43:01 -0000	1.20
  @@ -17,6 +17,8 @@
   
   package org.apache.sandesha;
   
  +import java.net.URI;
  +
   /**
    * class Constants
    * 
  @@ -254,5 +256,10 @@
       public static final int SERVER = 1;
   
       public static final int CLIENT = 0;
  +    
  +    public static final String IN_OUT="inOut";
  +    public static final String IN_ONLY="inOnly";
  +   
  +    public static final String DEFAULT_URI="uri:defaultWSRM";
   }