BBjspPipelineConfig::removeStage (Deprecated)

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

Description

In BBj 18.0 and higher, this method removes the named BBjspPipelineStageConfig from this BBjspPipelineConfig.

Syntax

Return Value

Method

BBjspPipelineStageConfig

removeStage(string name)

Parameters

Variable

Description

name

the name of the stage

Return Value

the BBjspPipelineStageConfig

Remarks

None.

Example

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

pipelineConfig! = root!.getPipelineConfig("MyPipeline")

pipelineConfig!.removeStage("foo")

pipelineConfig!.save()

See Also