(file) Return to ResponseHandler.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/ResponseHandler.h between version 1.26 and 1.27

version 1.26, 2006/02/08 20:59:53 version 1.27, 2006/02/14 18:21:13
Line 128 
Line 128 
         delivered.  An Array form of this method is also available to         delivered.  An Array form of this method is also available to
         deliver multiple results.         deliver multiple results.
         @param instance The instance to deliver to the CIM Server.         @param instance The instance to deliver to the CIM Server.
           @exception Exception May be thrown if the data that is delivered is
           not consistent with the corresponding request or associated schema.
     */     */
     virtual void deliver(const CIMInstance & instance) = 0;     virtual void deliver(const CIMInstance & instance) = 0;
  
Line 135 
Line 137 
         Delivers multiple instance results to the CIM Server.  This method         Delivers multiple instance results to the CIM Server.  This method
         may be invoked multiple times, if necessary.         may be invoked multiple times, if necessary.
         @param instances The instances to deliver to the CIM Server.         @param instances The instances to deliver to the CIM Server.
           @exception Exception May be thrown if the data that is delivered is
           not consistent with the corresponding request or associated schema.
     */     */
     virtual void deliver(const Array<CIMInstance> & instances) = 0;     virtual void deliver(const Array<CIMInstance> & instances) = 0;
 }; };
Line 154 
Line 158 
         delivered.  An Array form of this method is also available to         delivered.  An Array form of this method is also available to
         deliver multiple results.         deliver multiple results.
         @param objectPath The object path to deliver to the CIM Server.         @param objectPath The object path to deliver to the CIM Server.
           @exception Exception May be thrown if the data that is delivered is
           not consistent with the corresponding request or associated schema.
     */     */
     virtual void deliver(const CIMObjectPath & objectPath) = 0;     virtual void deliver(const CIMObjectPath & objectPath) = 0;
  
Line 161 
Line 167 
         Delivers multiple object path results to the CIM Server.  This method         Delivers multiple object path results to the CIM Server.  This method
         may be invoked multiple times, if necessary.         may be invoked multiple times, if necessary.
         @param objectPaths The object paths to deliver to the CIM Server.         @param objectPaths The object paths to deliver to the CIM Server.
           @exception Exception May be thrown if the data that is delivered is
           not consistent with the corresponding request or associated schema.
     */     */
     virtual void deliver(const Array<CIMObjectPath> & objectPaths) = 0;     virtual void deliver(const Array<CIMObjectPath> & objectPaths) = 0;
 }; };
Line 180 
Line 188 
         needs to be delivered.  An Array form of this method is also         needs to be delivered.  An Array form of this method is also
         available to deliver multiple results.         available to deliver multiple results.
         @param outParamValue The output parameter to deliver to the CIM Server.         @param outParamValue The output parameter to deliver to the CIM Server.
           @exception Exception May be thrown if the data that is delivered is
           not consistent with the corresponding request or associated schema.
     */     */
     virtual void deliverParamValue(const CIMParamValue & outParamValue) = 0;     virtual void deliverParamValue(const CIMParamValue & outParamValue) = 0;
  
Line 188 
Line 198 
         may be invoked multiple times, if necessary.         may be invoked multiple times, if necessary.
         @param outParamValues An Array of method output parameters to deliver         @param outParamValues An Array of method output parameters to deliver
         to the CIM Server.         to the CIM Server.
           @exception Exception May be thrown if the data that is delivered is
           not consistent with the corresponding request or associated schema.
     */     */
     virtual void deliverParamValue(     virtual void deliverParamValue(
         const Array<CIMParamValue> & outParamValues) = 0;         const Array<CIMParamValue> & outParamValues) = 0;
Line 195 
Line 207 
     /**     /**
         Delivers an extrinsic method return value to the CIM Server.         Delivers an extrinsic method return value to the CIM Server.
         @param returnValue The return value to deliver to the CIM Server.         @param returnValue The return value to deliver to the CIM Server.
           @exception Exception May be thrown if the data that is delivered is
           not consistent with the corresponding request or associated schema.
     */     */
     virtual void deliver(const CIMValue & returnValue) = 0;     virtual void deliver(const CIMValue & returnValue) = 0;
 }; };
Line 214 
Line 228 
         Another form is also available to specify the context for the         Another form is also available to specify the context for the
         delivery.         delivery.
         @param indication The indication instance to deliver to the CIM Server.         @param indication The indication instance to deliver to the CIM Server.
           @exception Exception May be thrown if the data that is delivered is
           not consistent with the corresponding request or associated schema.
     */     */
     virtual void deliver(const CIMIndication & indication) = 0;     virtual void deliver(const CIMIndication & indication) = 0;
  
Line 222 
Line 238 
         this method is available to specify the context for the delivery.         this method is available to specify the context for the delivery.
         @param indications An Array of indication instances to deliver to the         @param indications An Array of indication instances to deliver to the
         CIM Server.         CIM Server.
           @exception Exception May be thrown if the data that is delivered is
           not consistent with the corresponding request or associated schema.
     */     */
     virtual void deliver(const Array<CIMIndication> & indications) = 0;     virtual void deliver(const Array<CIMIndication> & indications) = 0;
  
Line 232 
Line 250 
         with the indication, such as the content language.         with the indication, such as the content language.
         @param context A context associated with the indication delivery.         @param context A context associated with the indication delivery.
         @param indication The indication instance to deliver to the CIM Server.         @param indication The indication instance to deliver to the CIM Server.
           @exception Exception May be thrown if the data that is delivered is
           not consistent with the corresponding request or associated schema.
     */     */
     virtual void deliver(     virtual void deliver(
         const OperationContext & context,         const OperationContext & context,
Line 244 
Line 264 
         @param context A context associated with the indication delivery.         @param context A context associated with the indication delivery.
         @param indications An Array of indication instances to deliver to the         @param indications An Array of indication instances to deliver to the
         CIM Server.         CIM Server.
           @exception Exception May be thrown if the data that is delivered is
           not consistent with the corresponding request or associated schema.
     */     */
     virtual void deliver(     virtual void deliver(
         const OperationContext & context,         const OperationContext & context,
Line 265 
Line 287 
         delivered.  An Array form of this method is also available to         delivered.  An Array form of this method is also available to
         deliver multiple results.         deliver multiple results.
         @param object The object to deliver to the CIM Server.         @param object The object to deliver to the CIM Server.
           @exception Exception May be thrown if the data that is delivered is
           not consistent with the corresponding request or associated schema.
     */     */
     virtual void deliver(const CIMObject & object) = 0;     virtual void deliver(const CIMObject & object) = 0;
  
Line 272 
Line 296 
         Delivers multiple object results to the CIM Server.  This method         Delivers multiple object results to the CIM Server.  This method
         may be invoked multiple times, if necessary.         may be invoked multiple times, if necessary.
         @param objects The objects to deliver to the CIM Server.         @param objects The objects to deliver to the CIM Server.
           @exception Exception May be thrown if the data that is delivered is
           not consistent with the corresponding request or associated schema.
     */     */
     virtual void deliver(const Array<CIMObject> & objects) = 0;     virtual void deliver(const Array<CIMObject> & objects) = 0;
 }; };


Legend:
Removed from v.1.26  
changed lines
  Added in v.1.27

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2