BBjAppConfig::isQuiet

Description

In BBj 12.0 and higher, this method returns whether this application should be started in quiet mode.

Syntax

Return Value

Method

boolean

isQuiet()

Parameters

None.

Return Values

Returns a boolean indicating whether this BBjAppConfig specifies quiet mode.

Remarks

None.

Example

rem ' BBjAppConfig::isQuiet

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

See Also

BBjAPI

BBjAppConfig

BBjAppConfig::setQuiet

BBjAppServer

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