com.vaadin.server.

Class VaadinPortletRequest

    • Constructor Detail

      • VaadinPortletRequest

        public VaadinPortletRequest(PortletRequest request,
                                    VaadinPortletService vaadinService)

        Wraps a portlet request and an associated vaadin service

        Parameters:

        request - the portlet request to wrap

        vaadinService - the associated vaadin service

    • Method Detail

      • getContentLength

        public int getContentLength()

        Description copied from interface: VaadinRequest

        Returns the length of the request content that can be read from the input stream returned by VaadinRequest.getInputStream().

        Specified by:

        getContentLength in interface VaadinRequest

        Returns:

        content length in bytes

        See Also:

        ServletRequest.getContentLength(), javax.portlet.ClientDataRequest#getContentLength()

      • getInputStream

        public InputStream getInputStream()
                                   throws IOException

        Description copied from interface: VaadinRequest

        Returns an input stream from which the request content can be read. The request content length can be obtained with VaadinRequest.getContentLength() without reading the full stream contents.

        Specified by:

        getInputStream in interface VaadinRequest

        Returns:

        the input stream from which the contents of the request can be read

        Throws:

        IOException - if the input stream can not be opened

        See Also:

        ServletRequest.getInputStream(), javax.portlet.ClientDataRequest#getPortletInputStream()

      • getReader

        public BufferedReader getReader()
                                 throws IOException

        Description copied from interface: VaadinRequest

        Retrieves the body of the request as character data using a BufferedReader. The reader translates the character data according to the character encoding used on the body. Either this method or VaadinRequest.getInputStream() may be called to read the body, not both.

        Specified by:

        getReader in interface VaadinRequest

        Returns:

        a BufferedReader containing the body of the request

        Throws:

        UnsupportedEncodingException - - if the character set encoding used is not supported and the text cannot be decoded

        IOException - if an input or output exception occurred

        See Also:

        ServletRequest.getReader(), ClientDataRequest#getReader()

      • getPathInfo

        public String getPathInfo()

        Description copied from interface: VaadinRequest

        Gets the path of the requested resource relative to the application. The path is null if no path information is available. Does always start with / if the path isn't null.

        Specified by:

        getPathInfo in interface VaadinRequest

        Returns:

        a string with the path relative to the application.

        See Also:

        HttpServletRequest.getPathInfo()

      • getWrappedSession

        public WrappedSession getWrappedSession()

        Description copied from interface: VaadinRequest

        Gets the session associated with this request, creating a new if there is no session.

        Specified by:

        getWrappedSession in interface VaadinRequest

        Returns:

        the wrapped session for this request

        See Also:

        WrappedSession, HttpServletRequest.getSession(), PortletRequest#getPortletSession()

      • getWrappedSession

        public WrappedSession getWrappedSession(boolean allowSessionCreation)

        Description copied from interface: VaadinRequest

        Gets the session associated with this request, optionally creating a new if there is no session.

        Specified by:

        getWrappedSession in interface VaadinRequest

        Parameters:

        allowSessionCreation - true to create a new session for this request if necessary; false to return null if there's no current session

        Returns:

        the wrapped session for this request

        See Also:

        WrappedSession, HttpServletRequest.getSession(boolean), PortletRequest#getPortletSession(boolean)

      • getPortletRequest

        public PortletRequest getPortletRequest()

        Gets the original, unwrapped portlet request.

        Returns:

        the unwrapped portlet request

      • getContentType

        public String getContentType()

        Description copied from interface: VaadinRequest

        Returns the MIME type of the body of the request, or null if the type is not known.

        Specified by:

        getContentType in interface VaadinRequest

        Returns:

        a string containing the name of the MIME type of the request, or null if the type is not known

        See Also:

        ServletRequest.getContentType(), javax.portlet.ResourceRequest#getContentType()

      • getCharacterEncoding

        public String getCharacterEncoding()

        Description copied from interface: VaadinRequest

        Returns the name of the character encoding used in the body of this request. This method returns null if the request does not specify a character encoding.

        Specified by:

        getCharacterEncoding in interface VaadinRequest

        Returns:

        a String containing the name of the character encoding, or null if the request does not specify a character encoding

        See Also:

        ServletRequest.getCharacterEncoding(), ClientDataRequest#getCharacterEncoding()

      • getMethod

        public String getMethod()

        Description copied from interface: VaadinRequest

        Returns the name of the HTTP method with which this request was made, for example, GET, POST, or PUT.

        Specified by:

        getMethod in interface VaadinRequest

        Returns:

        a String specifying the name of the method with which this request was made

        See Also:

        HttpServletRequest.getMethod(), ClientDataRequest#getMethod()

      • 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

        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

        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

        Returns:

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

        See Also:

        ServletRequest.getRemotePort()

      • getHeader

        public String getHeader(String string)

        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

        Parameters:

        string - 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)

      • getPortalProperty

        public String getPortalProperty(String name)

        Reads a portal property from the portal context of the Vaadin request.

        Parameters:

        name - a string with the name of the portal property to get

        Returns:

        a string with the value of the property, or null if the property is not defined

      • getPortletPreference

        public String getPortletPreference(String name)

        Reads a portlet preference from the portlet of the request.

        Parameters:

        name - The name of the portlet preference. Cannot be null.

        Returns:

        The value of the portlet preference, null if the preference is not defined.

      • getDateHeader

        public long getDateHeader(String name)

        Description copied from interface: VaadinRequest

        Returns the value of the specified request header as a long value that represents a Date object. Use this method with headers that contain dates, such as If-Modified-Since.

        The date is returned as the number of milliseconds since January 1, 1970 GMT. The header name is case insensitive.

        If the request did not have a header of the specified name, this method returns -1. If the header can't be converted to a date, the method throws an IllegalArgumentException.

        Specified by:

        getDateHeader in interface VaadinRequest

        Parameters:

        name - a String specifying the name of the header

        Returns:

        a long value representing the date specified in the header expressed as the number of milliseconds since January 1, 1970 GMT, or -1 if the named header was not included with the request

        See Also:

        HttpServletRequest.getDateHeader(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

        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

        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)

      • getCurrentPortletRequest

        public static PortletRequest getCurrentPortletRequest()

        Gets the currently processed portlet request. The current portlet request is automatically defined when the request is started. The current portlet request can not be used in e.g. background threads because of the way server implementations reuse request instances.

        Returns:

        the current portlet request instance if available, otherwise null

        Since:

        7.3

      • getCurrent

        public static VaadinPortletRequest getCurrent()

        Gets the currently processed Vaadin portlet request. The current request is automatically defined when the request is started. The current request can not be used in e.g. background threads because of the way server implementations reuse request instances.

        Returns:

        the current Vaadin portlet request instance if available, otherwise null

        Since:

        7.3