BBjspPipelineStage::execute (Deprecated)

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

Description

In BBj 16.0 and higher, this method is called by the Pipeline Engine engine to execute application specific business logic.

Syntax

Return Value

Method

String

execute(BBjspSessionData session)

Parameters

Variable

Description

session

the BBjspSessionData

Return Value

a string to tell the BBjspPipelines where to continue within the available BBjspPipelineStage's.

Remarks

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