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:44:22 UTC

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

jaliya      2004/12/17 04:44:22

  Modified:    sandesha/src/org/apache/sandesha RMMessageContext.java
  Log:
  String action is added hold the action from the client
  
  Revision  Changes    Path
  1.15      +14 -0     ws-fx/sandesha/src/org/apache/sandesha/RMMessageContext.java
  
  Index: RMMessageContext.java
  ===================================================================
  RCS file: /home/cvs/ws-fx/sandesha/src/org/apache/sandesha/RMMessageContext.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- RMMessageContext.java	24 Nov 2004 13:35:03 -0000	1.14
  +++ RMMessageContext.java	17 Dec 2004 12:44:22 -0000	1.15
  @@ -58,7 +58,21 @@
       private long msgNumber = 0;
   
       private String sourceURL = null;
  +    
  +    private String action=null;
   
  +    /**
  +     * @return Returns the action.
  +     */
  +    public String getAction() {
  +        return action;
  +    }
  +    /**
  +     * @param action The action to set.
  +     */
  +    public void setAction(String action) {
  +        this.action = action;
  +    }
       //This will be used to handle the relates to field.
       //When sending the response messages from the server
       private String oldSequenceID = null;