
BBjApplication
Description
In BBj 12.0 and higher, the BBjApplication object represents a published BUI application and is immutable. Changes are made through the BBjAppConfig object.
Creation
BBjAPI > BBjAdmin > BBjAppServer > BBjAppConfig > BBjApplication
The BBjApplication object is created through the following BBjAppConfig method:
Return Value |
Method |
---|---|
BBjApplication |
buildApplication(string name) |
Methods of BBjApplication
Return Value |
Method |
---|---|
string |
|
string |
|
string |
|
int |
|
string |
|
boolean |
|
boolean |
|
string |
|
boolean |
|
string |
getName() |
boolean |
|
string |
|
boolean |
|
int |
|
boolean |
|
boolean |
|
string |
|
string |
|
boolean | isDwcEnabled() |
boolean |
isQuiet() |
Remarks
None.
Constants
None.
Example
rem ' BBjApplication admin! = bbjapi().getAdmin("admin","admin123") appServer! = admin!.getWebAppServer() vector! = appServer!.getAllAppNames() if vector!.size() then for i = 0 to vector!.size() - 1 appName$ = vector!.get(i) app! = appServer!.getApplication(appName$) print appName$," ",app!.getProgramName() next i endif |
See Also