Class PageDefinitionEntityImpl
- java.lang.Object
-
- org.flowable.common.engine.impl.persistence.entity.AbstractEntity
-
- com.flowable.app.engine.impl.persistence.entity.AbstractAppEngineEntity
-
- com.flowable.app.engine.impl.persistence.entity.PageDefinitionEntityImpl
-
- All Implemented Interfaces:
PageDefinitionEntity
,PageDefinition
,HasRevision
,Entity
public class PageDefinitionEntityImpl extends AbstractAppEngineEntity implements PageDefinitionEntity
-
-
Field Summary
Fields Modifier and Type Field Description protected String
appId
protected String
appKey
protected String
deploymentId
protected String
key
protected String
name
protected String
pageUrl
protected String
tenantId
-
Fields inherited from class org.flowable.common.engine.impl.persistence.entity.AbstractEntity
id, isDeleted, isInserted, isUpdated, originalPersistentState, revision
-
-
Constructor Summary
Constructors Constructor Description PageDefinitionEntityImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAppId()
reference to the app definitionString
getAppKey()
reference to the app definition keyString
getDeploymentId()
the deployment in which this page definition is contained.String
getKey()
unique value for all versions of this page definitionString
getName()
page nameString
getPageUrl()
the page url of this page definition.Object
getPersistentState()
String
getTenantId()
the tenant identifier of this page definitionvoid
setAppId(String appId)
void
setAppKey(String appKey)
void
setDeploymentId(String deploymentId)
void
setKey(String key)
void
setName(String name)
void
setPageUrl(String pageUrl)
void
setTenantId(String tenantId)
-
Methods inherited from class com.flowable.app.engine.impl.persistence.entity.AbstractAppEngineEntity
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, toString, 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
-
Methods inherited from interface com.flowable.core.app.api.PageDefinition
getId
-
-
-
-
Method Detail
-
getPersistentState
public Object getPersistentState()
- Specified by:
getPersistentState
in interfaceEntity
-
getAppId
public String getAppId()
Description copied from interface:PageDefinition
reference to the app definition- Specified by:
getAppId
in interfacePageDefinition
-
setAppId
public void setAppId(String appId)
- Specified by:
setAppId
in interfacePageDefinitionEntity
-
getAppKey
public String getAppKey()
Description copied from interface:PageDefinition
reference to the app definition key- Specified by:
getAppKey
in interfacePageDefinition
-
setAppKey
public void setAppKey(String appKey)
- Specified by:
setAppKey
in interfacePageDefinitionEntity
-
getName
public String getName()
Description copied from interface:PageDefinition
page name- Specified by:
getName
in interfacePageDefinition
-
setName
public void setName(String name)
- Specified by:
setName
in interfacePageDefinitionEntity
-
getKey
public String getKey()
Description copied from interface:PageDefinition
unique value for all versions of this page definition- Specified by:
getKey
in interfacePageDefinition
-
setKey
public void setKey(String key)
- Specified by:
setKey
in interfacePageDefinitionEntity
-
getPageUrl
public String getPageUrl()
Description copied from interface:PageDefinition
the page url of this page definition.- Specified by:
getPageUrl
in interfacePageDefinition
-
setPageUrl
public void setPageUrl(String pageUrl)
- Specified by:
setPageUrl
in interfacePageDefinitionEntity
-
getDeploymentId
public String getDeploymentId()
Description copied from interface:PageDefinition
the deployment in which this page definition is contained.- Specified by:
getDeploymentId
in interfacePageDefinition
-
setDeploymentId
public void setDeploymentId(String deploymentId)
- Specified by:
setDeploymentId
in interfacePageDefinitionEntity
-
getTenantId
public String getTenantId()
Description copied from interface:PageDefinition
the tenant identifier of this page definition- Specified by:
getTenantId
in interfacePageDefinition
-
setTenantId
public void setTenantId(String tenantId)
- Specified by:
setTenantId
in interfacePageDefinitionEntity
-
-