Retrieving a Context Parameter from a Response

    Procedure
  1. Retrieve a callback context from the mutable request context:

    import com.tibco.amf.platform.runtime.extension.context.CallbackContext;
    				CallbackContext callbackContext =mutableRequestContext.getCallbackContext();
  2. Retrieve a parameter from the callback context:

    callbackContext.getParameter(parameterName, Type.class);