BBjAppConfig::getApplicationUserName

Description

In BBj 12.0 and higher, this method returns the application user name, which corresponds to the BBj -n parameter.

Syntax

Return Value

Method

string

getApplicationUserName()

Parameters

None.

Return Values

Returns the application user name.

Remarks

None.

Example

rem ' BBjAppConfig::getApplicationUserName

admin! = bbjapi().getAdmin("admin","admin123")
appServer! = admin!.getWebAppServer()
appConfig! = appServer!.makeEmptyAppConfig()
appConfig!.setApplicationUserName("admin")
print "getApplicationUserName: ",
print appConfig!.getApplicationUserName()

See Also

BBjAPI

BBjAppConfig

BBjAppConfig::setApplicationUserName

BBjAppServer

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