org.eclipse.persistence.annotations
@Target(value=TYPE) @Retention(value=RUNTIME) public @interface QueryRedirectors
QueryRedirector
Modifier and Type | Optional Element and Description |
---|---|
Class |
allQueries
This AllQueries Query Redirector will be applied to any executing object query
that does not have a more precise redirector (like the
ReadObjectQuery Redirector) or a redirector set directly on the query.
|
Class |
delete
A Default Delete Object Query Redirector will be applied to any executing
DeleteObjectQuery or DeleteAllQuery that does not have a redirector set directly on the query.
|
Class |
insert
A Default Insert Query Redirector will be applied to any executing
InsertObjectQuery that does not have a redirector set directly on the query.
|
Class |
readAll
A Default ReadAll Query Redirector will be applied to any executing
ReadAllQuery that does not have a redirector set directly on the query.
|
Class |
readObject
A Default ReadObject Query Redirector will be applied to any executing
ReadObjectQuery that does not have a redirector set directly on the query.
|
Class |
report
A Default ReportQuery Redirector will be applied to any executing
ReportQuery that does not have a redirector set directly on the query.
|
Class |
update
A Default Update Query Redirector will be applied to any executing
UpdateObjectQuery or UpdateAllQuery that does not have a redirector set directly on the query.
|
public abstract Class allQueries
public abstract Class readAll
public abstract Class readObject
public abstract Class report
public abstract Class update
public abstract Class insert
public abstract Class delete