oracle.toplink.sdk
Interface SDKCall
- All Superinterfaces:
- Call, java.lang.Cloneable, java.io.Serializable
- All Known Implementing Classes:
- AbstractSDKCall
- public interface SDKCall
- extends Call
SDKCall
augments the Call
interface
to define a bit more
behavior, as required by the SDKQueryMechanism
:
- When a query is executed, it is cloned; the call must be
able to provide a clone of itself that corresponds to this cloned query.
- The query mechanism will invoke the call at execution time
and pass it the parameters via a database row. The query
mechanism will also pass the accessor to the call.
- Since:
- TOPLink/Java 3.0
- See Also:
SDKQueryMechanism
,
SDKAccessor
Type | Method |
SDKCall |
clone(DatabaseQuery queryClone)
Clone the call with the new query. |
java.lang.Object |
execute(DatabaseRow translationRow,
oracle.toplink.internal.databaseaccess.Accessor accessor)
Execute the call and return the results. |
Methods inherited from interface oracle.toplink.queryframework.Call |
|
clone
public SDKCall clone(DatabaseQuery queryClone)
- Clone the call with the new query.
execute
public java.lang.Object execute(DatabaseRow translationRow,
oracle.toplink.internal.databaseaccess.Accessor accessor)
throws SDKDataStoreException
- Execute the call and return the results.