|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |
@Target(value=TYPE) @Retention(value=RUNTIME) public @interface NamedNativeQuery
Specifies a named native SQL query.
Query names are scoped to the persistence unit.
The NamedNativeQuery
annotation can be applied to an
entity or mapped superclass.
Required Element Summary | |
---|---|
String |
name
The name used to refer to the query with the EntityManager
methods that create query objects. |
String |
query
The SQL query string. |
Optional Element Summary | |
---|---|
QueryHint[] |
hints
Query properties and hints. |
Class |
resultClass
The class of the result. |
String |
resultSetMapping
The name of a SqlResultSetMapping , as defined in metadata. |
Element Detail |
---|
public abstract String name
EntityManager
methods that create query objects.
public abstract String query
public abstract QueryHint[] hints
public abstract Class resultClass
public abstract String resultSetMapping
SqlResultSetMapping
, as defined in metadata.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |