Interface ProcedureMethodContext
-
public interface ProcedureMethodContext
Context for theProcedureSource
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getProcedureName()
Name of theProcedure
.java.lang.Class<?>
getResource()
Obtains the resourceClass
to provide theProcedure
.SourceContext
getSourceContext()
Obtains theSourceContext
.void
setMethodObjectInstanceFactory(MethodObjectFactory factory)
Overrides the defaultMethodObjectFactory
.
-
-
-
Method Detail
-
getResource
java.lang.Class<?> getResource()
Obtains the resourceClass
to provide theProcedure
.- Returns:
- Resource
Class
configured to provide theProcedure
.
-
getProcedureName
java.lang.String getProcedureName()
Name of theProcedure
.- Returns:
- Name of the
Procedure
.
-
setMethodObjectInstanceFactory
void setMethodObjectInstanceFactory(MethodObjectFactory factory)
Overrides the default
MethodObjectFactory
.Specifying
null
indicates a staticMethod
.- Parameters:
factory
-MethodObjectFactory
.
-
getSourceContext
SourceContext getSourceContext()
Obtains theSourceContext
.- Returns:
SourceContext
.
-
-