Uses of Interface
org.apache.sling.api.request.RequestParameter
-
Packages that use RequestParameter Package Description org.apache.sling.api org.apache.sling.api.request org.apache.sling.api.wrappers -
-
Uses of RequestParameter in org.apache.sling.api
Methods in org.apache.sling.api that return RequestParameter Modifier and Type Method Description @Nullable RequestParameter
SlingHttpServletRequest. getRequestParameter(@NotNull String name)
Returns the value of a request parameter as aRequestParameter
, ornull
if the parameter does not exist.@Nullable RequestParameter[]
SlingHttpServletRequest. getRequestParameters(@NotNull String name)
Returns an array ofRequestParameter
objects containing all of the values the given request parameter has, ornull
if the parameter does not exist.Methods in org.apache.sling.api that return types with arguments of type RequestParameter Modifier and Type Method Description @NotNull List<RequestParameter>
SlingHttpServletRequest. getRequestParameterList()
Returns the request parameters as instances of theRequestParameter
interface in the order or the request where the query string parameters are first and the POST request parameters are second. -
Uses of RequestParameter in org.apache.sling.api.request
Methods in org.apache.sling.api.request that return RequestParameter Modifier and Type Method Description @Nullable RequestParameter
RequestParameterMap. getValue(String name)
Returns the first value for the named parameter or null if none@Nullable RequestParameter[]
RequestParameterMap. getValues(@NotNull String name)
Returns all values for the named parameter or null if none -
Uses of RequestParameter in org.apache.sling.api.wrappers
Methods in org.apache.sling.api.wrappers that return RequestParameter Modifier and Type Method Description RequestParameter
SlingHttpServletRequestWrapper. getRequestParameter(String name)
RequestParameter[]
SlingHttpServletRequestWrapper. getRequestParameters(String name)
Methods in org.apache.sling.api.wrappers that return types with arguments of type RequestParameter Modifier and Type Method Description List<RequestParameter>
SlingHttpServletRequestWrapper. getRequestParameterList()
-