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/01 05:10:15 UTC

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

jaliya      2004/11/30 20:10:15

  Modified:    sandesha/src/org/apache/sandesha/server
                        ServerStorageManager.java
  Log:
  Implementation of the following two methods. These will be used by the RMSender to
  check for the
   public RMMessageContext checkForResponseMessage(String requestId) {    }
   public boolean checkForAcknowledgement(String requestMsgId) {}
  
  Revision  Changes    Path
  1.8       +11 -0     ws-fx/sandesha/src/org/apache/sandesha/server/ServerStorageManager.java
  
  Index: ServerStorageManager.java
  ===================================================================
  RCS file: /home/cvs/ws-fx/sandesha/src/org/apache/sandesha/server/ServerStorageManager.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- ServerStorageManager.java	20 Oct 2004 10:40:57 -0000	1.7
  +++ ServerStorageManager.java	1 Dec 2004 04:10:15 -0000	1.8
  @@ -307,4 +307,15 @@
                   rmMessageContext);
   
       }
  +
  +    public RMMessageContext checkForResponseMessage(String requestId) {
  +        // TODO Auto-generated method stub
  +        return null;
  +    }
  +    
  +    
  +    public boolean checkForAcknowledgement(String requestMsgId) {
  +        // TODO Auto-generated method stub
  +        return false;
  +    }
   }