Interface ApplicationInfo
- All Superinterfaces:
- de.uplanet.lucy.server.rtcache.ILanguageConstant,- de.uplanet.lucy.server.util.ILanguageConstantOrTitle,- de.uplanet.lucy.server.rtcache.IRtInfo,- de.uplanet.lucy.server.rtcache.IRtInfoWithTitle
- 
Method SummaryModifier and TypeMethodDescriptionGet the application license.The name of the application.intGet the user that have created the application.Get the creation date of the application.Get an application's default description.getDescription(String p_strLang) Get the application description for the given language.Get the application's language specific descriptions.getGuid()Get the GUID of the application.getIcon()Get the application icon path.Get the languages that are supported by this application.intGet the user that last changed the application.Get the date, when application was last modified.de.uplanet.lucy.server.property.ApplicationPropertyCollectionGet the runtime class of the application.Get the GUID of the start fup page.Get the GUID of the start page.Get the application template's GUID.booleanbooleanDetermine, if application is a system application.booleansupportsLanguage(String p_strLang) Determines, if given language is supported.Methods inherited from interface de.uplanet.lucy.server.rtcache.ILanguageConstantgetLanguageConstantAppGuid, getLanguageConstantName, getLanguageConstantType, hasLanguageConstantMethods inherited from interface de.uplanet.lucy.server.util.ILanguageConstantOrTitlegetTitlesMethods inherited from interface de.uplanet.lucy.server.rtcache.IRtInfoWithTitlegetDefaultTitle, getTitle, getTitles
- 
Method Details- 
getGuidGet the GUID of the application.LCAPP.STRAPPGUID - Returns:
- the GUID of the application (not null).
 
- 
getApplicationNameThe name of the application.LCAPP.STRAPPNAME - Returns:
- The application name (not null)
 
- 
getCreationDateDate getCreationDate()Get the creation date of the application.LCAPP.DTEDITCREATE - Returns:
- creation date of the application.
 
- 
getLastModifiedDateDate getLastModifiedDate()Get the date, when application was last modified.LCAPP.DTEDITCHANGED - Returns:
- date, when application was last modified.
 
- 
getStartFupGuidString getStartFupGuid()Get the GUID of the start fup page.LCAPP.STRAPPFUPGUID - Returns:
- GUID of the start page.
 
- 
getStartPageGuidString getStartPageGuid()Get the GUID of the start page.LCAPP.STRAPPPAGEGUID - Returns:
- GUID of the start page (not null=> in final implementation, now it could be null)).
 
- 
getRuntimeClassGet the runtime class of the application.LCAPPTEMPL.STRADMINCLASS (JOIN LCAPP.STRAPPTEMPLGUID = LCAPPTEMPL.STRGUID) - Returns:
- The runtime class of the application (not null).
 
- 
isSystemApplicationboolean isSystemApplication()Determine, if application is a system application.LCAPP.BISSYSTEM - Returns:
- trueif the application is a system application, or- falseotherwise.
 
- 
getTemplateGuidGet the application template's GUID.LCAPP.STRAPPTEMPLGUID - Returns:
- The application template's GUID (not null).
 
- 
getDefaultDescriptionString getDefaultDescription()Get an application's default description.LCAPPTITLE.STRITEM (JOIN LCAPPTITLE.STRAPPGUID = LCAPP.STRGUID AND LCAPPTITLE.TYPE = "description") - Returns:
- The default description of this application (could be null).
 
- 
getDescriptionsGet the application's language specific descriptions.LCAPPTITLE.STRITEM (JOIN LCAPPTITLE.STRAPPGUID = LCAPP.STRGUID AND LCAPPTITLE.TYPE = "description") - Returns:
- The language specific descriptions (not null).
 
- 
getDescriptionGet the application description for the given language.LCAPPTITLE.STRITEM (JOIN LCAPPTITLE.STRAPPGUID = LCAPP.STRGUID AND LCAPPTITLE.TYPE = "description") - Parameters:
- p_strLang- A language identifier.
- Returns:
- The language-specific application description, or an
    empty string if it does not exist (could be null).
 
- 
getIconPath getIcon()Get the application icon path.- Returns:
- The path of the application icon (could be null).
 
- 
supportsLanguageDetermines, if given language is supported.LCAPPTITLE.STRITEM (JOIN LCAPPTITLE.STRAPPGUID = LCAPP.STRGUID AND LCAPPTITLE.TYPE = "description") - Returns:
- trueif the given language is supported by this application, or- falseotherwise.
 
- 
getLanguagesGet the languages that are supported by this application.LCAPPTITLE.STRITEM (JOIN LCAPPTITLE.STRAPPGUID = LCAPP.STRGUID AND LCAPPTITLE.TYPE = "description") - Returns:
- The identifiers of the supported languages (not null).
 
- 
getLastChangedUserint getLastChangedUser()Get the user that last changed the application.LCAPP.LUSERIDCHANGED - Returns:
- Id of user last changed the application.
 
- 
getCreatedUserint getCreatedUser()Get the user that have created the application.LCAPP.LUSERIDCREATED - Returns:
- Id of user last changed the application.
 
- 
getApplicationLicenseString getApplicationLicense()Get the application license.LCAPP.STRAPPLIC - Returns:
- A string that represents the application license.
 
- 
getPropertiesde.uplanet.lucy.server.property.ApplicationPropertyCollection getProperties()- Returns:
- The application specific properties.
 
- 
getLanguageConstantNameDescriptionString getLanguageConstantNameDescription()- Returns:
- Returns if a language constant name if hasLanguageConstantDescription()istrueotherwisefalse
 
- 
getLanguageConstantTypeDescriptionString getLanguageConstantTypeDescription()- Returns:
- Returns if a language constant type if hasLanguageConstantDescription()istrueotherwisefalse
 
- 
hasLanguageConstantDescriptionboolean hasLanguageConstantDescription()- Returns:
- Returns if a language constant is set for the description otherwise false
 
 
-