chamikara    2005/02/17 22:33:53

  Modified:    sandesha/src/org/apache/sandesha/server
                        ServerStorageManager.java
  Log:
   Fololowing methods were added
  
   public void addSendMsgNo(String seqId,long msgNo);
  
    public boolean isSentMsg(String seqId,long msgNo);
  
    public boolean hasLastMsgReceived(String seqId);
  
    public long getLastMsgNo(String seqId);
  
  Revision  Changes    Path
  1.17      +46 -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.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- ServerStorageManager.java 16 Feb 2005 04:21:21 -0000      1.16
  +++ ServerStorageManager.java 18 Feb 2005 06:33:53 -0000      1.17
  @@ -349,4 +349,50 @@
       public void insertFault(RMMessageContext rmMsgCtx) {
           //To change body of implemented methods use File | Settings | File 
Templates.
       }
  +    
  +    
  +     /* (non-Javadoc)
  +      * @see 
org.apache.sandesha.IStorageManager#addSentMsgNo(java.lang.String, long)
  +      */
  +     public void addSentMsgNo(String seq, long msgNo) {
  +             // TODO Auto-generated method stub
  +
  +     }
  +     /* (non-Javadoc)
  +      * @see 
org.apache.sandesha.IStorageManager#getLastMsgNo(java.lang.String)
  +      */
  +     public long getLastMsgNo(String seq) {
  +             // TODO Auto-generated method stub
  +             return 0;
  +     }
  +     /* (non-Javadoc)
  +      * @see 
org.apache.sandesha.IStorageManager#hasLastMsgNo(java.lang.String)
  +      */
  +     public boolean hasLastMsgNo(String seq) {
  +             // TODO Auto-generated method stub
  +             return false;
  +     }
  +     
  +     
  +     /* (non-Javadoc)
  +      * @see 
org.apache.sandesha.IStorageManager#addSendMsgNo(java.lang.String, long)
  +      */
  +     public void addSendMsgNo(String seqId, long msgNo) {
  +             // TODO Auto-generated method stub
  +
  +     }
  +     /* (non-Javadoc)
  +      * @see 
org.apache.sandesha.IStorageManager#hasLastMsgReceived(java.lang.String)
  +      */
  +     public boolean hasLastMsgReceived(String seqId) {
  +             // TODO Auto-generated method stub
  +             return false;
  +     }
  +     /* (non-Javadoc)
  +      * @see org.apache.sandesha.IStorageManager#isSentMsg(java.lang.String, 
long)
  +      */
  +     public boolean isSentMsg(String seqId, long msgNo) {
  +             // TODO Auto-generated method stub
  +             return false;
  +     }
   }
  \ No newline at end of file
  
  
  

Reply via email to