Class BooleanExpressionImpl
- java.lang.Object
-
- org.jbpm.services.task.impl.model.BooleanExpressionImpl
-
- All Implemented Interfaces:
Externalizable
,Serializable
,org.kie.internal.task.api.model.BooleanExpression
@Entity public class BooleanExpressionImpl extends Object implements org.kie.internal.task.api.model.BooleanExpression
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BooleanExpressionImpl()
BooleanExpressionImpl(String type, String expression)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getExpression()
Long
getId()
String
getType()
int
hashCode()
void
readExternal(ObjectInput in)
void
setExpression(String expression)
void
setId(long id)
void
setType(String type)
void
writeExternal(ObjectOutput out)
-
-
-
Method Detail
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
- Specified by:
writeExternal
in interfaceExternalizable
- Throws:
IOException
-
readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
- Specified by:
readExternal
in interfaceExternalizable
- Throws:
IOException
ClassNotFoundException
-
getId
public Long getId()
- Specified by:
getId
in interfaceorg.kie.internal.task.api.model.BooleanExpression
-
setId
public void setId(long id)
- Specified by:
setId
in interfaceorg.kie.internal.task.api.model.BooleanExpression
-
getType
public String getType()
- Specified by:
getType
in interfaceorg.kie.internal.task.api.model.BooleanExpression
-
setType
public void setType(String type)
- Specified by:
setType
in interfaceorg.kie.internal.task.api.model.BooleanExpression
-
getExpression
public String getExpression()
- Specified by:
getExpression
in interfaceorg.kie.internal.task.api.model.BooleanExpression
-
setExpression
public void setExpression(String expression)
- Specified by:
setExpression
in interfaceorg.kie.internal.task.api.model.BooleanExpression
-
-