Package org.hibernate.boot.query
Interface NamedResultSetMappingDescriptor
-
- All Known Implementing Classes:
HbmResultSetMappingDescriptor
,SqlResultSetMappingDescriptor
public interface NamedResultSetMappingDescriptor
Models the "boot view" of a ResultSet mapping used in the mapping of native and procedure queries. Ultimately used to generate a NamedResultSetMappingMemento that is stored in theNamedObjectRepository
for availability at runtime
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getRegistrationName()
The name under which the result-set-mapping is to be registeredNamedResultSetMappingMemento
resolve(ResultSetMappingResolutionContext resolutionContext)
Create a representation of the described ResultSet mapping for the purpose of being stored in Hibernate'sNamedObjectRepository
-
-
-
Method Detail
-
getRegistrationName
String getRegistrationName()
The name under which the result-set-mapping is to be registered
-
resolve
NamedResultSetMappingMemento resolve(ResultSetMappingResolutionContext resolutionContext)
Create a representation of the described ResultSet mapping for the purpose of being stored in Hibernate'sNamedObjectRepository
- See Also:
QueryEngine.getNamedObjectRepository()
-
-