Package org.ow2.clif.server.api
Interface BladeControl
-
- All Superinterfaces:
ActivityControl
- All Known Implementing Classes:
AbstractDumbInsert,AbstractInsert,BladeInsertAdapterImpl,Insert,Insert,Insert,Insert,Insert,Insert,Insert,Insert_JRockit5,IsacExtendedEngine,MTScenario,Synchro,SynchroBladeInsert
public interface BladeControl extends ActivityControl
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringBLADE_CONTROLstatic java.lang.StringBLADE_INSERT_CONTROL
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidchangeParameter(java.lang.String parameter, java.io.Serializable value)Sets the parameterparameterof this blade with the valuevalue.java.util.Map<java.lang.String,java.io.Serializable>getCurrentParameters()Returns aMapwhich maps the defined parameters to their values.java.lang.StringgetId()voidsetArgument(java.lang.String argument)Sets the scenario argument string.voidsetId(java.lang.String id)Sets a unique identifier string to this blade
-
-
-
Field Detail
-
BLADE_CONTROL
static final java.lang.String BLADE_CONTROL
- See Also:
- Constant Field Values
-
BLADE_INSERT_CONTROL
static final java.lang.String BLADE_INSERT_CONTROL
- See Also:
- Constant Field Values
-
-
Method Detail
-
setArgument
void setArgument(java.lang.String argument) throws ClifExceptionSets the scenario argument string.- Throws:
ClifException
-
setId
void setId(java.lang.String id)
Sets a unique identifier string to this blade
-
getId
java.lang.String getId()
- Returns:
- the blade unique identifier
-
changeParameter
void changeParameter(java.lang.String parameter, java.io.Serializable value) throws ClifExceptionSets the parameterparameterof this blade with the valuevalue. This method allows to change parameters independently of the activity of the blade. However, some parameters can depend on the state of the blade.- Throws:
ClifException
-
getCurrentParameters
java.util.Map<java.lang.String,java.io.Serializable> getCurrentParameters()
Returns aMapwhich maps the defined parameters to their values.
-
-