BBjspPipelineStage (Deprecated)

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

Description

In BBj 16.0 and higher, this interface was provided to allow consistent development of BBjspPipelineStages in the BBJSP framework.

Pipelines provide a powerful

Methods of BBjspPipelineStage

Return Value

Method

string

execute(BBjspSessionDatasession)

Remarks

None.

Example

rem '===
rem '=== This class contains a BBJspPipelineStage.
rem '===
rem '=== It must implement the BBJspPipelineStage interface and have the execute method.
rem '===

class public Start implements BBjspPipelineStage

    method public BBjString execute(BBjspSessionData pipelineSession!)

        rem '===
        rem '= Inert Business Logic to manipulate the BBjspSessionData object
        rem '===

        methodret "OK"

    methodend

classend

See Also

BBJSP

Pipeline Engine

BBjspPipelineStageConfig