Class AppResourceEntityImpl
- java.lang.Object
-
- org.flowable.common.engine.impl.persistence.entity.AbstractEntityNoRevision
-
- com.flowable.app.engine.impl.persistence.entity.AbstractAppEngineNoRevisionEntity
-
- com.flowable.app.engine.impl.persistence.entity.AppResourceEntityImpl
-
- All Implemented Interfaces:
AppResourceEntity
,Serializable
,EngineResource
,Entity
public class AppResourceEntityImpl extends AbstractAppEngineNoRevisionEntity implements AppResourceEntity, Serializable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected byte[]
bytes
protected String
deploymentId
protected boolean
generated
protected String
name
-
Fields inherited from class org.flowable.common.engine.impl.persistence.entity.AbstractEntityNoRevision
id, isDeleted, isInserted, isUpdated, originalPersistentState
-
-
Constructor Summary
Constructors Constructor Description AppResourceEntityImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]
getBytes()
String
getDeploymentId()
String
getName()
Object
getPersistentState()
boolean
isGenerated()
void
setBytes(byte[] bytes)
void
setDeploymentId(String deploymentId)
void
setGenerated(boolean generated)
void
setName(String name)
String
toString()
-
Methods inherited from class com.flowable.app.engine.impl.persistence.entity.AbstractAppEngineNoRevisionEntity
getIdPrefix
-
Methods inherited from class org.flowable.common.engine.impl.persistence.entity.AbstractEntityNoRevision
getId, getOriginalPersistentState, isDeleted, isInserted, isUpdated, setDeleted, setId, setInserted, setOriginalPersistentState, setUpdated
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
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
-
getName
public String getName()
- Specified by:
getName
in interfaceEngineResource
-
setName
public void setName(String name)
- Specified by:
setName
in interfaceEngineResource
-
getBytes
public byte[] getBytes()
- Specified by:
getBytes
in interfaceEngineResource
-
setBytes
public void setBytes(byte[] bytes)
- Specified by:
setBytes
in interfaceEngineResource
-
getDeploymentId
public String getDeploymentId()
- Specified by:
getDeploymentId
in interfaceEngineResource
-
setDeploymentId
public void setDeploymentId(String deploymentId)
- Specified by:
setDeploymentId
in interfaceEngineResource
-
getPersistentState
public Object getPersistentState()
- Specified by:
getPersistentState
in interfaceEntity
-
isGenerated
public boolean isGenerated()
- Specified by:
isGenerated
in interfaceEngineResource
-
setGenerated
public void setGenerated(boolean generated)
- Specified by:
setGenerated
in interfaceAppResourceEntity
-
-