oracle.odi.dataservices.fwk
Class UpdateFilter

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

public class UpdateFilter
extends java.lang.Object

A data service parameter used to define a filtered update on a datastore via a ManagedEntity. This class constitutes a valid input parameter for a data service method.

The UpdateFilter class is used to generate an operation which updates a datastore with the content defined in the ManagedEntity. Only rows of the datastore that match the QueryFilter are updated


Constructor Summary
UpdateFilter(ManagedEntity pManagedEntity, QueryFilter pQueryFilter)
          Constructs a new UpdateFilter.
 
Method Summary
 ManagedEntity getManagedEntity()
          Returns the ManagedEntity that contains the updated data.
 QueryFilter getQueryFilter()
          Returns the QueryFilter used to filter the rows to update.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

UpdateFilter

public UpdateFilter(ManagedEntity pManagedEntity,
                    QueryFilter pQueryFilter)
Constructs a new UpdateFilter.

Parameters:
pManagedEntity - ManagedEntity that contains the updated data
pQueryFilter - QueryFilter used to filter the rows to update
Method Detail

getManagedEntity

public ManagedEntity getManagedEntity()
Returns the ManagedEntity that contains the updated data.

Returns:
ManagedEntity that contains the updated data

getQueryFilter

public QueryFilter getQueryFilter()
Returns the QueryFilter used to filter the rows to update.

Returns:
QueryFilter used to filter the rows to update