Package org.hibernate.boot.query
Interface NamedResultSetMappingDescriptor
-
- All Known Implementing Classes:
HbmResultSetMappingDescriptor,SqlResultSetMappingDescriptor
public interface NamedResultSetMappingDescriptorModels 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 theNamedObjectRepositoryfor availability at runtime
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetRegistrationName()The name under which the result-set-mapping is to be registeredNamedResultSetMappingMementoresolve(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()
-
-