BBjAppConfig::setBuiEnabled

Description

In BBj 21.10 and higher, this method sets whether this application is enabled in the BUI client.

Syntax

Return Value

Method

void

setBuiEnabled(boolean buiEnabled)

Parameters

Variable Description
buiEnabled A boolean indicating whether this application is enabled in the BUI client.

Return Values

None.

Remarks

None.

Example

rem ' BBjAppConfig::setBuiEnabled

admin! = bbjapi().getAdmin("admin","admin123")
appServer! = admin!.getWebAppServer()
appConfig! = appServer!.makeEmptyAppConfig()
appConfig!.setBuiEnabled(1)
print "setBuiEnabled: ",appConfig!.isBuiEnabled()

See Also

BBjAPI

BBjAppConfig

BBjAppConfig::isBuiEnabled

BBjAppServer

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