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 String
getProcedureName()
The name of the underlying database procedure or function nameString
getRegistrationName()
The name under which the query is to be registeredNamedCallableQueryMemento
resolve(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:NamedQueryDefinition
The name under which the query is to be registered- Specified by:
getRegistrationName
in interfaceNamedQueryDefinition
-
getProcedureName
public String getProcedureName()
Description copied from interface:NamedProcedureCallDefinition
The name of the underlying database procedure or function name- Specified by:
getProcedureName
in interfaceNamedProcedureCallDefinition
-
resolve
public NamedCallableQueryMemento resolve(SessionFactoryImplementor sessionFactory)
Description copied from interface:NamedQueryDefinition
Resolve the mapping definition into its run-time memento form- Specified by:
resolve
in interfaceNamedProcedureCallDefinition
- Specified by:
resolve
in interfaceNamedQueryDefinition
-
-