Class ProcessTaskCustomField
- java.lang.Object
-
- com.aquima.interactions.process.impl.ProcessTaskCustomField
-
- All Implemented Interfaces:
IProcessTaskCustomField
public class ProcessTaskCustomField extends Object implements IProcessTaskCustomField
Representation of a custom field which can be set on a task, that contains an expression.- Since:
- 9.1
- Author:
- T. Middeldorp
-
-
Constructor Summary
Constructors Constructor Description ProcessTaskCustomField()
Default constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IExpression
getExpression()
String
getName()
void
setExpression(IExpression expression)
Sets the expression string for this field.void
setName(String name)
Sets the name for this field.
-
-
-
Method Detail
-
getName
public String getName()
- Specified by:
getName
in interfaceIProcessTaskCustomField
-
setName
public void setName(String name)
Sets the name for this field.- Parameters:
name
- The name to set
-
getExpression
public IExpression getExpression()
- Specified by:
getExpression
in interfaceIProcessTaskCustomField
-
setExpression
public void setExpression(IExpression expression)
Sets the expression string for this field.- Parameters:
expression
- The expression field to set.
-
-