Class ActionLinkEntityImpl
- java.lang.Object
-
- org.flowable.common.engine.impl.persistence.entity.AbstractEntity
-
- com.flowable.action.engine.impl.persistence.entity.AbstractActionEngineEntity
-
- com.flowable.action.engine.impl.persistence.entity.ActionLinkEntityImpl
-
- All Implemented Interfaces:
ActionLink
,ActionLinkEntity
,HasRevision
,Entity
public class ActionLinkEntityImpl extends AbstractActionEngineEntity implements ActionLinkEntity
- Author:
- Joram Barrez
-
-
Field Summary
Fields Modifier and Type Field Description protected String
actionDefinitionId
protected String
actionInstanceId
protected Date
creationTime
protected String
scopeId
protected String
scopeType
-
Fields inherited from class org.flowable.common.engine.impl.persistence.entity.AbstractEntity
id, isDeleted, isInserted, isUpdated, originalPersistentState, revision
-
-
Constructor Summary
Constructors Constructor Description ActionLinkEntityImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getActionDefinitionId()
String
getActionInstanceId()
Date
getCreationTime()
Object
getPersistentState()
String
getScopeId()
String
getScopeType()
void
setActionDefinitionId(String actionDefinitionId)
void
setActionInstanceId(String actionInstanceId)
void
setCreationTime(Date creationTime)
void
setScopeId(String scopeId)
void
setScopeType(String scopeType)
String
toString()
-
Methods inherited from class com.flowable.action.engine.impl.persistence.entity.AbstractActionEngineEntity
getIdPrefix
-
Methods inherited from class org.flowable.common.engine.impl.persistence.entity.AbstractEntity
getId, getOriginalPersistentState, getRevision, getRevisionNext, isDeleted, isInserted, isUpdated, setDeleted, setId, setInserted, setOriginalPersistentState, setRevision, setUpdated
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.flowable.action.api.runtime.ActionLink
getId
-
Methods inherited from interface org.flowable.common.engine.impl.persistence.entity.Entity
getId, getIdPrefix, getOriginalPersistentState, isDeleted, isInserted, isUpdated, setDeleted, setId, setInserted, setOriginalPersistentState, setUpdated
-
-
-
-
Method Detail
-
getPersistentState
public Object getPersistentState()
- Specified by:
getPersistentState
in interfaceEntity
-
getActionInstanceId
public String getActionInstanceId()
- Specified by:
getActionInstanceId
in interfaceActionLink
-
setActionInstanceId
public void setActionInstanceId(String actionInstanceId)
- Specified by:
setActionInstanceId
in interfaceActionLinkEntity
-
getActionDefinitionId
public String getActionDefinitionId()
- Specified by:
getActionDefinitionId
in interfaceActionLink
-
setActionDefinitionId
public void setActionDefinitionId(String actionDefinitionId)
- Specified by:
setActionDefinitionId
in interfaceActionLinkEntity
-
getScopeId
public String getScopeId()
- Specified by:
getScopeId
in interfaceActionLink
-
setScopeId
public void setScopeId(String scopeId)
- Specified by:
setScopeId
in interfaceActionLinkEntity
-
getScopeType
public String getScopeType()
- Specified by:
getScopeType
in interfaceActionLink
-
setScopeType
public void setScopeType(String scopeType)
- Specified by:
setScopeType
in interfaceActionLinkEntity
-
getCreationTime
public Date getCreationTime()
- Specified by:
getCreationTime
in interfaceActionLink
-
setCreationTime
public void setCreationTime(Date creationTime)
- Specified by:
setCreationTime
in interfaceActionLinkEntity
-
-