BBjJettyContextConfiguration::deleteParameter


Description

In BBj 15.0 and higher, this method deletes the specified parameter.

Syntax

Return Value

Method

void

deleteParameter(string name)

Parameters

Variable

Description

name

the name of the parameter to be deleted.

Return Value

None.

Remarks

None.

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()

root!.deleteParameter("param")

See Also

BBjAPI

BBjJettyContextConfiguration