Uses of Class
org.opencastproject.runtimeinfo.rest.RestParamData
Packages that use RestParamData
-
Uses of RestParamData in org.opencastproject.runtimeinfo.rest
Methods in org.opencastproject.runtimeinfo.rest that return RestParamDataModifier and TypeMethodDescriptionRestEndpointData.addBodyParam(RestParameter restParam) Adds a body parameter to this endpoint.RestEndpointData.getBodyParam()Gets the body parameter of this endpoint.Methods in org.opencastproject.runtimeinfo.rest that return types with arguments of type RestParamDataModifier and TypeMethodDescriptionRestFormData.getItems()Returns the list of form parameters.RestEndpointData.getOptionalParams()Gets the list of optional parameters of this endpoint.RestEndpointData.getPathParams()Gets the list of path parameters of this endpoint.RestEndpointData.getRequiredParams()Gets the list of required parameters of this endpoint.Methods in org.opencastproject.runtimeinfo.rest with parameters of type RestParamDataModifier and TypeMethodDescriptionvoidRestEndpointData.addOptionalParam(RestParamData param) Adds an optional parameter for this endpoint, this would be a parameter which is passed in the query string (for GET) or encoded as part of the body otherwise (often referred to as a post or form parameter).voidRestEndpointData.addPathParam(RestParamData param) Adds a path parameter for this endpoint, this would be a parameter which is passed as part of the path (e.g.voidRestEndpointData.addRequiredParam(RestParamData param) Adds a required form parameter for this endpoint, this would be a parameter which is passed encoded as part of the request body (commonly referred to as a post or form parameter).