BBjJettyContextConfiguration::getDevMode

Description

In BBj 17.0 and higher, this method gets the dev-mode of the BBjJettyContext.

Syntax

Return Value

Method

String

getDevMode()

Parameters

None.

Return Value

Returns a String containing 'true' or 'false.'

Remarks

Setting DevMode in a BBjJettyContext causes code-generation on each request thus allowing developers to change the page mark-up.

Example

declare BBjAPI api!
declare BBjAdmin admin!
declare BBjJettyServerConfiguration config!
declare BBjJettyContextConfiguration root!

api! = BBJAPI()
admin! = api!.getAdmin("admin","admin123")
config! = admin!.getJettyServerConfig()
root! = config!.getRootContextInfo()

print root!.getDevMode()

See Also

BBjJettyContextConfiguration