Interface ISpringWebFluxWebRequest

  • All Superinterfaces:
    org.thymeleaf.web.IWebRequest

    public interface ISpringWebFluxWebRequest
    extends org.thymeleaf.web.IWebRequest
    Since:
    3.1.0
    Author:
    Daniel Fernández
    • Method Detail

      • getURI

        URI getURI()
      • getScheme

        default String getScheme()
        Specified by:
        getScheme in interface org.thymeleaf.web.IWebRequest
      • getServerName

        default String getServerName()
        Specified by:
        getServerName in interface org.thymeleaf.web.IWebRequest
      • getServerPort

        default Integer getServerPort()
        Specified by:
        getServerPort in interface org.thymeleaf.web.IWebRequest
      • getQueryString

        default String getQueryString()
        Specified by:
        getQueryString in interface org.thymeleaf.web.IWebRequest
      • getHeaderMultiValueMap

        org.springframework.util.MultiValueMap<String,​String> getHeaderMultiValueMap()
      • containsHeader

        default boolean containsHeader​(String name)
        Specified by:
        containsHeader in interface org.thymeleaf.web.IWebRequest
      • getHeaderCount

        default int getHeaderCount()
        Specified by:
        getHeaderCount in interface org.thymeleaf.web.IWebRequest
      • getAllHeaderNames

        default Set<String> getAllHeaderNames()
        Specified by:
        getAllHeaderNames in interface org.thymeleaf.web.IWebRequest
      • getHeaderMap

        default Map<String,​String[]> getHeaderMap()
        Specified by:
        getHeaderMap in interface org.thymeleaf.web.IWebRequest
      • getHeaderValue

        default String getHeaderValue​(String name)
        Specified by:
        getHeaderValue in interface org.thymeleaf.web.IWebRequest
      • getHeaderValues

        default String[] getHeaderValues​(String name)
        Specified by:
        getHeaderValues in interface org.thymeleaf.web.IWebRequest
      • getParameterMultiValueMap

        org.springframework.util.MultiValueMap<String,​String> getParameterMultiValueMap()
      • containsParameter

        default boolean containsParameter​(String name)
        Specified by:
        containsParameter in interface org.thymeleaf.web.IWebRequest
      • getParameterCount

        default int getParameterCount()
        Specified by:
        getParameterCount in interface org.thymeleaf.web.IWebRequest
      • getAllParameterNames

        default Set<String> getAllParameterNames()
        Specified by:
        getAllParameterNames in interface org.thymeleaf.web.IWebRequest
      • getParameterMap

        default Map<String,​String[]> getParameterMap()
        Specified by:
        getParameterMap in interface org.thymeleaf.web.IWebRequest
      • getParameterValue

        default String getParameterValue​(String name)
        Specified by:
        getParameterValue in interface org.thymeleaf.web.IWebRequest
      • getParameterValues

        default String[] getParameterValues​(String name)
        Specified by:
        getParameterValues in interface org.thymeleaf.web.IWebRequest
      • getCookieMultiValueMap

        org.springframework.util.MultiValueMap<String,​org.springframework.http.HttpCookie> getCookieMultiValueMap()
      • containsCookie

        default boolean containsCookie​(String name)
        Specified by:
        containsCookie in interface org.thymeleaf.web.IWebRequest
      • getCookieCount

        default int getCookieCount()
        Specified by:
        getCookieCount in interface org.thymeleaf.web.IWebRequest
      • getAllCookieNames

        default Set<String> getAllCookieNames()
        Specified by:
        getAllCookieNames in interface org.thymeleaf.web.IWebRequest
      • getCookieMap

        default Map<String,​String[]> getCookieMap()
        Specified by:
        getCookieMap in interface org.thymeleaf.web.IWebRequest
      • getCookieValue

        default String getCookieValue​(String name)
        Specified by:
        getCookieValue in interface org.thymeleaf.web.IWebRequest
      • getCookieValues

        default String[] getCookieValues​(String name)
        Specified by:
        getCookieValues in interface org.thymeleaf.web.IWebRequest
      • getNativeRequestObject

        Object getNativeRequestObject()