Interface Procedure
-
- All Known Implementing Classes:
ProcedureImpl
public interface Procedure
Procedure.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default 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
.default boolean
isProcedure(java.lang.String serviceName, java.lang.String procedureName)
Determines if theProcedure
.
-
-
-
Method Detail
-
getServiceName
java.lang.String getServiceName()
Obtains the name of theProcedureSource
.- Returns:
- Name of the
ProcedureSource
.
-
getProcedureName
java.lang.String getProcedureName()
Obtains the name of theProcedure
.- Returns:
- Name of the
Procedure
. May benull
to indicate manually selected.
-
getProperties
ProcedureProperty[] getProperties()
Obtains the specification of properties for theProcedure
.- Returns:
- Property specification.
-
-