BBjJettyContextConfiguration::getCommandConfigs (Deprecated)

The BBJSP system is deprecated. For new development, use BBxServlets.

Description

In BBj 17.00 and higher, this method returns a BBjVector of BBjspCommandConfig records for the current BBjJettyContext.

Syntax

Return Value

Method

BBjVector

getCommandConfigs()

Parameters

None.

Return Value

a BBjVector of BBjspCommandConfig records

Remarks

None.

Example

api! = BBJAPI()
admin! = api!.getAdmin("admin","admin123")
jetty! = admin!.getJettyServerConfig()
context! = jetty!.getCustomContext("test")

v! = context!.getCommandConfigs()
sz = v!.size()

for i = 1 to v!.size()
    print v!.get(i-1)
next i

See Also

BBjAPI

BBjJettyContextConfiguration

BBjVector