Package com.flowable.core.app.api
Interface PageDefinition
- All Known Subinterfaces:
PageDefinitionEntity
- All Known Implementing Classes:
PageDefinitionEntityImpl
public interface PageDefinition
-
Method Summary
Modifier and Type Method Description java.lang.String
getAppId()
reference to the app definitionjava.lang.String
getAppKey()
reference to the app definition keyjava.lang.String
getDeploymentId()
the deployment in which this page definition is contained.java.lang.String
getId()
unique identifierjava.lang.String
getKey()
unique value for all versions of this page definitionjava.lang.String
getName()
page namejava.lang.String
getPageUrl()
the page url of this page definition.java.lang.String
getTenantId()
the tenant identifier of this page definition
-
Method Details
-
getId
java.lang.String getId()unique identifier -
getAppId
java.lang.String getAppId()reference to the app definition -
getAppKey
java.lang.String getAppKey()reference to the app definition key -
getName
java.lang.String getName()page name -
getKey
java.lang.String getKey()unique value for all versions of this page definition -
getPageUrl
java.lang.String getPageUrl()the page url of this page definition. -
getDeploymentId
java.lang.String getDeploymentId()the deployment in which this page definition is contained. -
getTenantId
java.lang.String getTenantId()the tenant identifier of this page definition
-