BBjAppConfig::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 this application is enabled for desktop deployment.

Example

rem ' BBjAppConfig::isDesktopEnabled
admin! = bbjapi().getAdmin("admin","admin123")
appServer! = admin!.getWebAppServer()
appConfig! = appServer!.makeEmptyAppConfig()
print "isDesktopEnabled: ",appConfig!.isDesktopEnabled()
appConfig!.setDesktopEnabled(1)
print "isDesktopEnabled: ",appConfig!.isDesktopEnabled()

ClosedVersion History

  • BBj 24.01: BBjAppConfig::isDesktopEnabled added.

See Also

BBjAPI

BBjApplication

BBjAppConfig::setDesktopEnabled

BBjAppServer

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