Package org.hibernate.boot.internal
Class NamedProcedureCallDefinitionImpl
- java.lang.Object
-
- org.hibernate.boot.internal.NamedProcedureCallDefinitionImpl
-
- All Implemented Interfaces:
NamedProcedureCallDefinition,NamedQueryDefinition
public class NamedProcedureCallDefinitionImpl extends Object implements NamedProcedureCallDefinition
Holds all the information needed from a named procedure call declaration in order to create aProcedureCallImpl- See Also:
NamedStoredProcedureQuery
-
-
Constructor Summary
Constructors Constructor Description NamedProcedureCallDefinitionImpl(NamedStoredProcedureQuery annotation)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetProcedureName()The name of the underlying database procedure or function nameStringgetRegistrationName()The name under which the query is to be registeredNamedCallableQueryMementoresolve(SessionFactoryImplementor sessionFactory)Resolve the mapping definition into its run-time memento form
-
-
-
Constructor Detail
-
NamedProcedureCallDefinitionImpl
public NamedProcedureCallDefinitionImpl(NamedStoredProcedureQuery annotation)
-
-
Method Detail
-
getRegistrationName
public String getRegistrationName()
Description copied from interface:NamedQueryDefinitionThe name under which the query is to be registered- Specified by:
getRegistrationNamein interfaceNamedQueryDefinition
-
getProcedureName
public String getProcedureName()
Description copied from interface:NamedProcedureCallDefinitionThe name of the underlying database procedure or function name- Specified by:
getProcedureNamein interfaceNamedProcedureCallDefinition
-
resolve
public NamedCallableQueryMemento resolve(SessionFactoryImplementor sessionFactory)
Description copied from interface:NamedQueryDefinitionResolve the mapping definition into its run-time memento form- Specified by:
resolvein interfaceNamedProcedureCallDefinition- Specified by:
resolvein interfaceNamedQueryDefinition
-
-