com.vaadin.server.

Class VaadinPortlet.VaadinHttpAndPortletRequest

    • Method Detail

      • getServletRequest

        protected abstract javax.servlet.http.HttpServletRequest getServletRequest(PortletRequest request)

        Returns the original HTTP servlet request for this portlet request.

        Parameters:

        request - PortletRequest used to

        Returns:

        the original HTTP servlet request

        Since:

        7.2

      • getParameter

        public String getParameter(String name)

        Description copied from interface: VaadinRequest

        Gets the named request parameter This is typically a HTTP GET or POST parameter, though other request types might have other ways of representing parameters.

        Parameters:

        name - the name of the parameter

        Returns:

        The paramter value, or null if no parameter with the given name is present

        See Also:

        ServletRequest.getParameter(String), javax.portlet.PortletRequest#getParameter(String)

      • getRemoteAddr

        public String getRemoteAddr()

        Description copied from interface: VaadinRequest

        Returns the IP address from which the request came. This might also be the address of a proxy between the server and the original requester.

        Specified by:

        getRemoteAddr in interface VaadinRequest

        Overrides:

        getRemoteAddr in class VaadinPortletRequest

        Returns:

        a string containing the IP address, or null if the address is not available

        See Also:

        ServletRequest.getRemoteAddr()

      • getRemoteHost

        public String getRemoteHost()

        Description copied from interface: VaadinRequest

        Returns the fully qualified name of the client or the last proxy that sent the request. If the engine cannot or chooses not to resolve the hostname (to improve performance), this method returns the dotted-string form of the IP address.

        Specified by:

        getRemoteHost in interface VaadinRequest

        Overrides:

        getRemoteHost in class VaadinPortletRequest

        Returns:

        a String containing the fully qualified name of the client, or null if the information is not available.

        See Also:

        ServletRequest.getRemoteHost()

      • getRemotePort

        public int getRemotePort()

        Description copied from interface: VaadinRequest

        Returns the Internet Protocol (IP) source port of the client or last proxy that sent the request.

        Specified by:

        getRemotePort in interface VaadinRequest

        Overrides:

        getRemotePort in class VaadinPortletRequest

        Returns:

        an integer specifying the port number, or -1 if the information is not available.

        See Also:

        ServletRequest.getRemotePort()

      • getHeader

        public String getHeader(String name)

        Description copied from interface: VaadinRequest

        Gets the value of a request header, e.g. a http header for a HttpServletRequest.

        Specified by:

        getHeader in interface VaadinRequest

        Overrides:

        getHeader in class VaadinPortletRequest

        Parameters:

        name - the name of the header

        Returns:

        the header value, or null if the header is not present in the request

        See Also:

        HttpServletRequest.getHeader(String)

      • getHeaderNames

        public Enumeration<String> getHeaderNames()

        Description copied from interface: VaadinRequest

        Returns an enumeration of all the header names this request contains. If the request has no headers, this method returns an empty enumeration.

        Some implementations do not allow access headers using this method, in which case this method returns null

        Specified by:

        getHeaderNames in interface VaadinRequest

        Overrides:

        getHeaderNames in class VaadinPortletRequest

        Returns:

        an enumeration of all the header names sent with this request; if the request has no headers, an empty enumeration; if the implementation does not allow this method, null

        See Also:

        HttpServletRequest.getHeaderNames()

      • getHeaders

        public Enumeration<String> getHeaders(String name)

        Description copied from interface: VaadinRequest

        Returns all the values of the specified request header as an Enumeration of String objects.

        Some headers, such as Accept-Language can be sent by clients as several headers each with a different value rather than sending the header as a comma separated list.

        If the request did not include any headers of the specified name, this method returns an empty Enumeration. If the request does not support accessing headers, this method returns null.

        The header name is case insensitive. You can use this method with any request header.

        Specified by:

        getHeaders in interface VaadinRequest

        Overrides:

        getHeaders in class VaadinPortletRequest

        Parameters:

        name - a String specifying the header name

        Returns:

        an Enumeration containing the values of the requested header. If the request does not have any headers of that name return an empty enumeration. If the header information is not available, return null

        See Also:

        HttpServletRequest.getHeaders(String)

      • getParameterMap

        public Map<String,String[]> getParameterMap()

        Description copied from interface: VaadinRequest

        Gets all the parameters of the request. Framework's internal init parameters have prefix "v-" (does not include such parameters as "theme" and "debug").

        Returns:

        A mapping of parameter names to arrays of parameter values

        See Also:

        VaadinRequest.getParameter(String), ServletRequest.getParameterMap(), javax.portlet.PortletRequest#getParameter(String)