Package org.flowable.app.api.repository
Interface AppDefinition
-
public interface AppDefinition
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCategory()category name which is derived from the targetNamespace attribute in the definitions elementStringgetDeploymentId()The deployment in which this app definition is contained.StringgetDescription()description of this app definitionStringgetId()unique identifierStringgetKey()unique name for all versions of this app definitionStringgetName()label used for display purposesStringgetResourceName()name ofthe resourceof this app definition.StringgetTenantId()The tenant identifier of this app definitionintgetVersion()version of this app definition
-
-
-
Method Detail
-
getId
String getId()
unique identifier
-
getCategory
String getCategory()
category name which is derived from the targetNamespace attribute in the definitions element
-
getName
String getName()
label used for display purposes
-
getKey
String getKey()
unique name for all versions of this app definition
-
getDescription
String getDescription()
description of this app definition
-
getVersion
int getVersion()
version of this app definition
-
getResourceName
String getResourceName()
name ofthe resourceof this app definition.
-
getDeploymentId
String getDeploymentId()
The deployment in which this app definition is contained.
-
getTenantId
String getTenantId()
The tenant identifier of this app definition
-
-