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 RequestParameterSlingHttpServletRequest. getRequestParameter(@NotNull String name)Returns the value of a request parameter as aRequestParameter, ornullif the parameter does not exist.@Nullable RequestParameter[]SlingHttpServletRequest. getRequestParameters(@NotNull String name)Returns an array ofRequestParameterobjects containing all of the values the given request parameter has, ornullif 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 theRequestParameterinterface 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 RequestParameterRequestParameterMap. 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 RequestParameterSlingHttpServletRequestWrapper. 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()
-