Retrieving a Context Parameter from a Request

    Procedure
  1. Retrieve the request context:

    import com.tibco.amf.platform.runtime.extension.context.RequestContext;

    RequestContext requestContext =

    (RequestContext)componentContext.getRequestContext();

  2. Retrieve the parameter from the request context:

    requestContext.getParameter(parameterName, Type.class);

    where Type can take the values String, Integer, Long, Boolean, Map, QName, and URI.