oracle.odi.dataservices.fwk
Class QueryResponse

java.lang.Object
  extended byoracle.odi.dataservices.fwk.QueryResponse

public class QueryResponse
extends java.lang.Object

A data service parameter that represents the response to an operation (either INSERT, UPDATE or DELETE) performed on the datastore. This class can constitutes a valid output parameter for a data service method.


Constructor Summary
QueryResponse(int pNbAffected)
          Constructs a new QueryResponse.
 
Method Summary
 int getNbAffected()
          Returns the number of rows inserted, updated or deleted by the operation.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

QueryResponse

public QueryResponse(int pNbAffected)
Constructs a new QueryResponse.

Parameters:
pNbAffected - number of rows inserted, updated or deleted by the operation.
Method Detail

getNbAffected

public int getNbAffected()
Returns the number of rows inserted, updated or deleted by the operation.

Returns:
number of rows inserted, updated or deleted by the operation.