Package net.officefloor.gef.woof.test
Class ManualProcedureSourceServiceFactory
- java.lang.Object
-
- net.officefloor.gef.woof.test.ManualProcedureSourceServiceFactory
-
- All Implemented Interfaces:
ProcedureSource
,ProcedureSourceServiceFactory
,ServiceFactory<ProcedureSource>
public class ManualProcedureSourceServiceFactory extends java.lang.Object implements ProcedureSourceServiceFactory, ProcedureSource
ManualProcedureSourceServiceFactory
.- Author:
- Daniel Sagenschneider
-
-
Constructor Summary
Constructors Constructor Description ManualProcedureSourceServiceFactory()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ProcedureSource
createService(ServiceContext context)
Creates the service.java.lang.String
getSourceName()
Name of this source.void
listProcedures(ProcedureListContext context)
Provides the availableProcedure
instances for the resource.java.lang.reflect.Method
loadMethod(ProcedureMethodContext context)
Loads theMethod
for theProcedure
.static void
procedure()
-
-
-
Method Detail
-
procedure
public static void procedure()
-
createService
public ProcedureSource createService(ServiceContext context) throws java.lang.Throwable
Description copied from interface:ServiceFactory
Creates the service.- Specified by:
createService
in interfaceServiceFactory<ProcedureSource>
- Parameters:
context
-ServiceContext
.- Returns:
- Service.
- Throws:
java.lang.Throwable
- If fails to create the service.
-
getSourceName
public java.lang.String getSourceName()
Description copied from interface:ProcedureSource
Name of this source.
Note that this is the name used in configuration to identify this
ProcedureSource
. Therefore, it can not change without causing configurations to be updated.The reasons for using this logical name over
Class
names is:- Class names can be quite long
- Class names are not easily readable
- Enables swapping plugins for same logical service name
- Specified by:
getSourceName
in interfaceProcedureSource
- Returns:
- Name of this source.
-
listProcedures
public void listProcedures(ProcedureListContext context) throws java.lang.Exception
Description copied from interface:ProcedureSource
Provides the availableProcedure
instances for the resource.- Specified by:
listProcedures
in interfaceProcedureSource
- Parameters:
context
-ProcedureListContext
.- Throws:
java.lang.Exception
- If fails to listProcedure
instances.
-
loadMethod
public java.lang.reflect.Method loadMethod(ProcedureMethodContext context) throws java.lang.Exception
Description copied from interface:ProcedureSource
Loads theMethod
for theProcedure
.- Specified by:
loadMethod
in interfaceProcedureSource
- Parameters:
context
-ProcedureMethodContext
.- Returns:
Method
for theProcedureSource
.- Throws:
java.lang.Exception
- If fails to load the method.
-
-