Uses of Class
org.opencastproject.runtimeinfo.rest.RestParamData
-
Packages that use RestParamData Package Description org.opencastproject.runtimeinfo.rest -
-
Uses of RestParamData in org.opencastproject.runtimeinfo.rest
Methods in org.opencastproject.runtimeinfo.rest that return RestParamData Modifier and Type Method Description RestParamDataRestEndpointData. addBodyParam(org.opencastproject.util.doc.rest.RestParameter restParam)Adds a body parameter to this endpoint.RestParamDataRestEndpointData. getBodyParam()Gets the body parameter of this endpoint.Methods in org.opencastproject.runtimeinfo.rest that return types with arguments of type RestParamData Modifier and Type Method Description List<RestParamData>RestFormData. getItems()Returns the list of form parameters.List<RestParamData>RestEndpointData. getOptionalParams()Gets the list of optional parameters of this endpoint.List<RestParamData>RestEndpointData. getPathParams()Gets the list of path parameters of this endpoint.List<RestParamData>RestEndpointData. getRequiredParams()Gets the list of required parameters of this endpoint.Methods in org.opencastproject.runtimeinfo.rest with parameters of type RestParamData Modifier and Type Method Description voidRestEndpointData. 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).
-