BBjAppConfig::setQuiet

Description

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

Syntax

Return Value

Method

void

setQuiet(boolean quiet)

Parameters

Variable

Description

quiet

A boolean indicating whether quiet mode is specified.

Return Values

None.

Remarks

On the command-line, this parameter is specified as -q.

Example

rem ' BBjAppConfig::setQuiet

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

See Also

BBjAPI

BBjAppConfig

BBjAppConfig::isQuiet

BBjAppServer

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

.