Class ProcedureImpl
- java.lang.Object
-
- net.officefloor.activity.impl.procedure.ProcedureImpl
-
-
Constructor Summary
Constructors Constructor Description ProcedureImpl(java.lang.String procedureName, java.lang.String serviceName, ProcedureProperty[] properties)
Instantiate.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getProcedureName()
Obtains the name of theProcedure
.ProcedureProperty[]
getProperties()
Obtains the specification of properties for theProcedure
.java.lang.String
getServiceName()
Obtains the name of theProcedureSource
.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface net.officefloor.activity.procedure.Procedure
isProcedure
-
-
-
-
Constructor Detail
-
ProcedureImpl
public ProcedureImpl(java.lang.String procedureName, java.lang.String serviceName, ProcedureProperty[] properties)
Instantiate.- Parameters:
procedureName
- Procedure name.serviceName
-ProcedureSource
name.properties
-ProcedureProperty
instances.
-
-
Method Detail
-
getProcedureName
public java.lang.String getProcedureName()
Description copied from interface:Procedure
Obtains the name of theProcedure
.- Specified by:
getProcedureName
in interfaceProcedure
- Returns:
- Name of the
Procedure
. May benull
to indicate manually selected.
-
getServiceName
public java.lang.String getServiceName()
Description copied from interface:Procedure
Obtains the name of theProcedureSource
.- Specified by:
getServiceName
in interfaceProcedure
- Returns:
- Name of the
ProcedureSource
.
-
getProperties
public ProcedureProperty[] getProperties()
Description copied from interface:Procedure
Obtains the specification of properties for theProcedure
.- Specified by:
getProperties
in interfaceProcedure
- Returns:
- Property specification.
-
-