BBjApplication::isDesktopEnabled

Description

In BBj 24.01 and higher, this method returns a boolean indicating whether or not this application is enabled for desktop deployment.

Syntax

Return Value Method
boolean isDesktopEnabled()

Parameters

None.

Return Value

Returns a boolean indicating whether or not this application is enabled for desktop deployment.

Example

rem ' BBjApplication::isDesktopEnabled
admin! = bbjapi().getAdmin("admin","admin123")
appServer! = admin!.getWebAppServer()
vector! = appServer!.getAllAppNames()
if vector!.size() then
   for i = 0 to vector!.size() - 1
       appName$ = vector!.get(i)
       app! = appServer!.getApplication(appName$,err=*continue)
       print appName$," isDesktopEnabled: ",
       print app!.isDesktopEnabled()
   next i
endif

ClosedVersion History

  • BBj 24.01: BBjApplication::isDesktopEnabled added.

See Also

BBjAPI

BBjAppConfig

BBjAppConfig::setDesktopEnabled

BBjAppServer

See the BBj Object Diagram for an illustration of the relationship between BBj Objects.