You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by sa...@apache.org on 2005/02/08 08:30:25 UTC

cvs commit: ws-axis/c/src/transport SOAPTransport.h

samisa      2005/02/07 23:30:25

  Modified:    c/src/transport SOAPTransport.h
  Log:
  Remove deprecated methods from Stub and SOAPTransport class APIs after tests.
  Fix for AXISCPP-330.
  
  Revision  Changes    Path
  1.13      +0 -101    ws-axis/c/src/transport/SOAPTransport.h
  
  Index: SOAPTransport.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/transport/SOAPTransport.h,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- SOAPTransport.h	21 Jan 2005 12:26:14 -0000	1.12
  +++ SOAPTransport.h	8 Feb 2005 07:30:25 -0000	1.13
  @@ -391,107 +391,6 @@
       */
       virtual void setTimeout(const long lSeconds) = 0;
       
  -    /**
  -    * @deprecated To fix spelling mistake. 
  -    *
  -    * Iterator initiatior for transport property keys
  -    *
  -    * This method must be called first to initiate access to the list of 
  -    * transport property keys.
  -    *
  -    * @return First transport property key. If there are no transport 
  -    * properties set, returns NULL.
  -    */
  -    virtual const char* getFirstTrasportPropertyKey() { return 0; };
  -
  -  /**
  -    * @deprecated To fix spelling mistake. 
  -    *
  -    * Iterator for transport property keys
  -    *
  -    * getFirstTransportPropertyKey() method must have been called at least once
  -    * before this method is called. If not behaviour is undefined.
  -    *
  -    * This method advances the iterator by one position.
  -    * Repeated calls always retuen the next value.
  -    *
  -    * @return Next transport property key. If there are no transport 
  -    * properties set or if iterator is at the end of the list, returns NULL.
  -    */
  -    virtual const char* getNextTrasportPropertyKey() { return 0; };
  -
  -  /**
  -    * @deprecated To fix spelling mistake. 
  -    *
  -    * Accessor for transport property keys.
  -    *
  -    * This method gives access to the key corresponding to the transport key
  -    * currently being pointed by transport property key iterator.
  -    *
  -    * getFirstTransportPropertyKey() method must have been called at least once
  -    * before this method is called. If not behaviour is undefined.
  -    *
  -    * This method does not advance the iterator.
  -    * Repeated calls always retuen the same key unless 
  -    * getNextTransportPropertyKey() is called in between.
  -    *
  -    * @return Current transport property key. If there are no transport 
  -    * properties set or if iterator is at the end of the list, returns NULL.
  -    */
  -    virtual const char* getCurrentTrasportPropertyKey() { return 0; };
  -    
  -  /**
  -    * @deprecated To fix spelling mistake. 
  -    *
  -    * Accessor for transport property values.
  -    *
  -    * This method gives access to the value corresponding to the transport key
  -    * currently being pointed by transport property key iterator.
  -    * As keys and values are treated as paires, access to the value field is 
  -    * based on the access to the key field.
  -    *
  -    * getFirstTransportPropertyKey() method must have been called at least once
  -    * before this method is called. If not behaviour is undefined.
  -    *
  -    * This method does not advance the iterator.
  -    * Repeated calls always retuen the same value unless 
  -    * getNextTransportPropertyKey() is called in between.
  -    *
  -    * @return Current transport property value. If there are no transport 
  -    * properties set or if iterator is at the end of the list, returns NULL.
  -    */
  -    virtual const char* getCurrentTrasportPropertyValue() { return 0; };
  -
  -  /**
  -    * @deprecated To fix spelling mistake.
  -    *
  -    * Deletes the transport property key:value pair currently pointed to by 
  -    * the iterator.
  -    */
  -    virtual void deleteCurrentTrasportProperty() {};
  -
  -  /**
  -    * @deprecated To fix spelling mistake. 
  -    *
  -    * Deletes the given occerance of the transport property key:value pair
  -    * corresponding to the given key.
  -    *
  -    * This method does not advance the iterator in line with the deletes done.
  -    * In case you want to access the transport properties after using this
  -    * method, it is advisable to reinitialize the iterator using
  -    * getFirstTransportPropertyKey();
  -    * However you can use this method despite where the iterator is 
  -    * pointing currently.
  -    *
  -    * @param pcKey Key of the transport property key:value pair to be deleted
  -    *              If the given key is not set currently, nothing will happen.
  -    * @param uiOccurance Which occerance of the key to be deleted, because 
  -    *                    there can be multiple values for the same key. 
  -    *                    Default is to delete the first occurance.
  -    *                    Count starts from 1.
  -    */
  -    virtual void deleteTrasportProperty(char* pcKey, unsigned int uiOccurance = 1) {};
  -    
     /**    
       * Iterator initiatior for transport property keys
       *