Class AppDefinitionRepresentation
- java.lang.Object
-
- com.flowable.platform.service.app.AppDefinitionRepresentation
-
public class AppDefinitionRepresentation extends Object
- Author:
- Luis Belloch
-
-
Field Summary
Fields Modifier and Type Field Description protected Map<String,Map<String,String>>
i18n
protected String
icon
protected String
id
protected String
key
protected String
label
protected String
labelKey
protected Integer
order
protected List<PageDefinitionRepresentation>
pages
protected String
theme
protected String
urlSegment
-
Constructor Summary
Constructors Constructor Description AppDefinitionRepresentation()
AppDefinitionRepresentation(CoreAppDefinition appDefinition, CoreAppModel appModel)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Map<String,String>>
getI18n()
String
getIcon()
String
getId()
String
getKey()
String
getLabel()
String
getLabelKey()
Integer
getOrder()
List<PageDefinitionRepresentation>
getPages()
String
getTheme()
String
getUrlSegment()
void
setI18n(Map<String,Map<String,String>> i18n)
void
setIcon(String icon)
void
setId(String id)
void
setKey(String key)
void
setLabel(String label)
void
setLabelKey(String labelKey)
void
setOrder(Integer order)
void
setPages(List<PageDefinitionRepresentation> pages)
void
setTheme(String theme)
void
setUrlSegment(String urlSegment)
-
-
-
Field Detail
-
id
protected String id
-
key
protected String key
-
label
protected String label
-
labelKey
protected String labelKey
-
icon
protected String icon
-
theme
protected String theme
-
order
protected Integer order
-
pages
protected List<PageDefinitionRepresentation> pages
-
urlSegment
protected String urlSegment
-
-
Constructor Detail
-
AppDefinitionRepresentation
public AppDefinitionRepresentation()
-
AppDefinitionRepresentation
public AppDefinitionRepresentation(CoreAppDefinition appDefinition, CoreAppModel appModel)
-
-
Method Detail
-
getId
public String getId()
-
setId
public void setId(String id)
-
getKey
public String getKey()
-
setKey
public void setKey(String key)
-
getLabel
public String getLabel()
-
setLabel
public void setLabel(String label)
-
getLabelKey
public String getLabelKey()
-
setLabelKey
public void setLabelKey(String labelKey)
-
getIcon
public String getIcon()
-
setIcon
public void setIcon(String icon)
-
getTheme
public String getTheme()
-
setTheme
public void setTheme(String theme)
-
getOrder
public Integer getOrder()
-
setOrder
public void setOrder(Integer order)
-
getPages
public List<PageDefinitionRepresentation> getPages()
-
setPages
public void setPages(List<PageDefinitionRepresentation> pages)
-
getUrlSegment
public String getUrlSegment()
-
setUrlSegment
public void setUrlSegment(String urlSegment)
-
-