Package org.cyclos.entities
Class Application
- java.lang.Object
-
- org.cyclos.entities.SimpleEntity
-
- org.cyclos.entities.Application
-
- All Implemented Interfaces:
Cloneable,ProcessableForProxying,IEntity
@Entity public class Application extends SimpleEntity
Contains global variables for the entire application
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.cyclos.entities.SimpleEntity
SimpleEntity.EntityLoadNotifier
-
-
Constructor Summary
Constructors Constructor Description Application()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetApplicationVersion()DategetArchivingDate()intgetDatabaseVersion()StringgetLastCommitId()byte[]getLicenseData()byte[]getLicenseKey()byte[]getLocalLicenseData()DategetMaxUsersAlmostReachedAlertDate()booleanisArchivingFinished()voidsetApplicationVersion(String applicationVersion)voidsetArchivingDate(Date archivingDate)voidsetArchivingFinished(boolean archivingFinished)voidsetDatabaseVersion(int databaseVersion)voidsetLastCommitId(String lastCommitId)voidsetLicenseData(byte[] licenseData)voidsetLicenseKey(byte[] licenseKey)voidsetLocalLicenseData(byte[] localLicenseData)voidsetMaxUsersAlmostReachedAlertDate(Date maxUsersAlmostReachedAlertDate)-
Methods inherited from class org.cyclos.entities.SimpleEntity
equals, getId, hashCode, id, ids, isPersistent, isTransient, register, setId, toShortString, toString, uniqueIds, uniqueIds
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.cyclos.entities.ProcessableForProxying
getProxyClass
-
-
-
-
Method Detail
-
getApplicationVersion
public String getApplicationVersion()
-
getArchivingDate
public Date getArchivingDate()
-
getDatabaseVersion
public int getDatabaseVersion()
-
getLastCommitId
public String getLastCommitId()
-
getLicenseData
public byte[] getLicenseData()
-
getLicenseKey
public byte[] getLicenseKey()
-
getLocalLicenseData
public byte[] getLocalLicenseData()
-
getMaxUsersAlmostReachedAlertDate
public Date getMaxUsersAlmostReachedAlertDate()
-
isArchivingFinished
public boolean isArchivingFinished()
-
setApplicationVersion
public void setApplicationVersion(String applicationVersion)
-
setArchivingDate
public void setArchivingDate(Date archivingDate)
-
setArchivingFinished
public void setArchivingFinished(boolean archivingFinished)
-
setDatabaseVersion
public void setDatabaseVersion(int databaseVersion)
-
setLastCommitId
public void setLastCommitId(String lastCommitId)
-
setLicenseData
public void setLicenseData(byte[] licenseData)
-
setLicenseKey
public void setLicenseKey(byte[] licenseKey)
-
setLocalLicenseData
public void setLocalLicenseData(byte[] localLicenseData)
-
setMaxUsersAlmostReachedAlertDate
public void setMaxUsersAlmostReachedAlertDate(Date maxUsersAlmostReachedAlertDate)
-
-