Package org.exoplatform.appcenter.entity
Class ApplicationEntity
- java.lang.Object
-
- org.exoplatform.appcenter.entity.ApplicationEntity
-
@Entity(name="ApplicationEntity") public class ApplicationEntity extends Object
- Author:
- Ayoub Zayati
-
-
Constructor Summary
Constructors Constructor Description ApplicationEntity()ApplicationEntity(Long id, String title, String url, Long imageFileId, String description, boolean active, boolean isMandatory, String permissions, boolean isChangedManually)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()StringgetHelpPageUrl()LonggetId()LonggetImageFileId()StringgetPermissions()StringgetTitle()StringgetUrl()booleanisActive()booleanisChangedManually()booleanisMandatory()booleanisMobile()booleanisSystem()voidsetActive(boolean active)voidsetChangedManually(boolean isChangedManually)voidsetDescription(String description)voidsetHelpPageUrl(String helpPageUrl)voidsetId(Long id)voidsetImageFileId(Long imageFileId)voidsetIsMobile(boolean isMobile)voidsetMandatory(boolean mandatory)voidsetPermissions(String permissions)voidsetSystem(boolean system)voidsetTitle(String title)voidsetUrl(String url)
-
-
-
Method Detail
-
getId
public Long getId()
- Returns:
- the id
-
setId
public void setId(Long id)
- Parameters:
id- the id to set
-
getTitle
public String getTitle()
- Returns:
- the title
-
setTitle
public void setTitle(String title)
- Parameters:
title- the title to set
-
getUrl
public String getUrl()
- Returns:
- the url
-
setUrl
public void setUrl(String url)
- Parameters:
url- the url to set
-
getHelpPageUrl
public String getHelpPageUrl()
- Returns:
- the help page url
-
setHelpPageUrl
public void setHelpPageUrl(String helpPageUrl)
- Parameters:
helpPageUrl- the help page url to set
-
getImageFileId
public Long getImageFileId()
- Returns:
- the imageFileId
-
setImageFileId
public void setImageFileId(Long imageFileId)
- Parameters:
imageFileId- the imageFileId to set
-
getDescription
public String getDescription()
- Returns:
- the description
-
setDescription
public void setDescription(String description)
- Parameters:
description- the description to set
-
isActive
public boolean isActive()
- Returns:
- the active
-
setActive
public void setActive(boolean active)
- Parameters:
active- the active to set
-
isMandatory
public boolean isMandatory()
- Returns:
- the isMandatory
-
setMandatory
public void setMandatory(boolean mandatory)
- Parameters:
mandatory- the isMandatory to set
-
isMobile
public boolean isMobile()
- Returns:
- the isMobile
-
setIsMobile
public void setIsMobile(boolean isMobile)
- Parameters:
isMobile- the isMobile to set
-
getPermissions
public String getPermissions()
- Returns:
- the permissions
-
setPermissions
public void setPermissions(String permissions)
- Parameters:
permissions- the permissions to set
-
isSystem
public boolean isSystem()
-
setSystem
public void setSystem(boolean system)
-
isChangedManually
public boolean isChangedManually()
- Returns:
- the isChangedManually
-
setChangedManually
public void setChangedManually(boolean isChangedManually)
- Parameters:
isChangedManually- the isChangedManually to set
-
-