Class ClassicHttpRequests


  • @Deprecated
    public final class ClassicHttpRequests
    extends java.lang.Object
    Deprecated.
    Use ClassicRequestBuilder
    Common HTTP methods using HttpUriRequest as a HTTP request message representation.

    Each static method creates a request object of the exact subclass of HttpUriRequest with a non-null URI.

    Since:
    5.0
    • Method Summary

      All Methods Static Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      static HttpUriRequest create​(java.lang.String method, java.lang.String uri)
      Deprecated.
      Creates a new HttpUriRequest for the given method and String URI.
      static HttpUriRequest create​(java.lang.String method, java.net.URI uri)
      Deprecated.
      Creates a new HttpUriRequest for the given method and URI.
      static HttpUriRequest create​(org.apache.hc.core5.http.Method method, java.lang.String uri)
      Deprecated.
      Creates a new HttpUriRequest for the given Method and String URI.
      static HttpUriRequest create​(org.apache.hc.core5.http.Method method, java.net.URI uri)
      Deprecated.
      Creates a new HttpUriRequest for the given Method and URI.
      static HttpUriRequest delete​(java.lang.String uri)
      Deprecated.
      Constructs a new "DELETE" HttpUriRequest initialized with the given URI.
      static HttpUriRequest delete​(java.net.URI uri)
      Deprecated.
      Constructs a new "DELETE" HttpUriRequest initialized with the given URI.
      static HttpUriRequest get​(java.lang.String uri)
      Deprecated.
      Constructs a new "GET" HttpUriRequest initialized with the given URI.
      static HttpUriRequest get​(java.net.URI uri)
      Deprecated.
      Constructs a new "GET" HttpUriRequest initialized with the given URI.
      static HttpUriRequest head​(java.lang.String uri)
      Deprecated.
      Constructs a new "HEAD" HttpUriRequest initialized with the given URI.
      static HttpUriRequest head​(java.net.URI uri)
      Deprecated.
      Constructs a new "HEAD" HttpUriRequest initialized with the given URI.
      static HttpUriRequest options​(java.lang.String uri)
      Deprecated.
      Constructs a new "OPTIONS" HttpUriRequest initialized with the given URI.
      static HttpUriRequest options​(java.net.URI uri)
      Deprecated.
      Constructs a new "OPTIONS" HttpUriRequest initialized with the given URI.
      static HttpUriRequest patch​(java.lang.String uri)
      Deprecated.
      Constructs a new "PATCH" HttpUriRequest initialized with the given URI.
      static HttpUriRequest patch​(java.net.URI uri)
      Deprecated.
      Constructs a new "PATCH" HttpUriRequest initialized with the given URI.
      static HttpUriRequest post​(java.lang.String uri)
      Deprecated.
      Constructs a new "POST" HttpUriRequest initialized with the given URI.
      static HttpUriRequest post​(java.net.URI uri)
      Deprecated.
      Constructs a new "POST" HttpUriRequest initialized with the given URI.
      static HttpUriRequest put​(java.lang.String uri)
      Deprecated.
      Constructs a new "PUT" HttpUriRequest initialized with the given URI.
      static HttpUriRequest put​(java.net.URI uri)
      Deprecated.
      Constructs a new "PUT" HttpUriRequest initialized with the given URI.
      static HttpUriRequest trace​(java.lang.String uri)
      Deprecated.
      Constructs a new "TRACE" HttpUriRequest initialized with the given URI.
      static HttpUriRequest trace​(java.net.URI uri)
      Deprecated.
      Constructs a new "TRACE" HttpUriRequest initialized with the given URI.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ClassicHttpRequests

        public ClassicHttpRequests()
        Deprecated.
    • Method Detail

      • create

        public static HttpUriRequest create​(org.apache.hc.core5.http.Method method,
                                            java.lang.String uri)
        Deprecated.
        Creates a new HttpUriRequest for the given Method and String URI.
        Parameters:
        method - A method.
        uri - a URI.
        Returns:
        a new HttpUriRequest.
      • create

        public static HttpUriRequest create​(org.apache.hc.core5.http.Method method,
                                            java.net.URI uri)
        Deprecated.
        Creates a new HttpUriRequest for the given Method and URI.
        Parameters:
        method - A method.
        uri - a URI.
        Returns:
        a new HttpUriRequest.
      • create

        public static HttpUriRequest create​(java.lang.String method,
                                            java.lang.String uri)
        Deprecated.
        Creates a new HttpUriRequest for the given method and String URI.
        Parameters:
        method - A method supported by this class.
        uri - a non-null request string URI.
        Returns:
        A new HttpUriRequest.
        Throws:
        java.lang.IllegalArgumentException - if the method is not supported.
        java.lang.IllegalArgumentException - if the string URI is null.
      • create

        public static HttpUriRequest create​(java.lang.String method,
                                            java.net.URI uri)
        Deprecated.
        Creates a new HttpUriRequest for the given method and URI.
        Parameters:
        method - A method supported by this class.
        uri - a non-null request URI.
        Returns:
        A new HttpUriRequest.
        Throws:
        java.lang.IllegalArgumentException - if the method is not supported.
        java.lang.IllegalArgumentException - if the URI is null.
      • delete

        public static HttpUriRequest delete​(java.lang.String uri)
        Deprecated.
        Constructs a new "DELETE" HttpUriRequest initialized with the given URI.
        Parameters:
        uri - a non-null request URI.
        Returns:
        a new "DELETE" HttpUriRequest.
        Throws:
        java.lang.IllegalArgumentException - if the URI is null.
      • delete

        public static HttpUriRequest delete​(java.net.URI uri)
        Deprecated.
        Constructs a new "DELETE" HttpUriRequest initialized with the given URI.
        Parameters:
        uri - a non-null request URI.
        Returns:
        a new "DELETE" HttpUriRequest.
        Throws:
        java.lang.IllegalArgumentException - if the URI is null.
      • get

        public static HttpUriRequest get​(java.lang.String uri)
        Deprecated.
        Constructs a new "GET" HttpUriRequest initialized with the given URI.
        Parameters:
        uri - a non-null request URI.
        Returns:
        a new "GET" HttpUriRequest.
        Throws:
        java.lang.IllegalArgumentException - if the URI is null.
      • get

        public static HttpUriRequest get​(java.net.URI uri)
        Deprecated.
        Constructs a new "GET" HttpUriRequest initialized with the given URI.
        Parameters:
        uri - a non-null request URI.
        Returns:
        a new "GET" HttpUriRequest.
        Throws:
        java.lang.IllegalArgumentException - if the URI is null.
      • head

        public static HttpUriRequest head​(java.lang.String uri)
        Deprecated.
        Constructs a new "HEAD" HttpUriRequest initialized with the given URI.
        Parameters:
        uri - a non-null request URI.
        Returns:
        a new "HEAD" HttpUriRequest.
        Throws:
        java.lang.IllegalArgumentException - if the URI is null.
      • head

        public static HttpUriRequest head​(java.net.URI uri)
        Deprecated.
        Constructs a new "HEAD" HttpUriRequest initialized with the given URI.
        Parameters:
        uri - a non-null request URI.
        Returns:
        a new "HEAD" HttpUriRequest.
        Throws:
        java.lang.IllegalArgumentException - if the URI is null.
      • options

        public static HttpUriRequest options​(java.lang.String uri)
        Deprecated.
        Constructs a new "OPTIONS" HttpUriRequest initialized with the given URI.
        Parameters:
        uri - a non-null request URI.
        Returns:
        a new "OPTIONS" HttpUriRequest.
        Throws:
        java.lang.IllegalArgumentException - if the URI is null.
      • options

        public static HttpUriRequest options​(java.net.URI uri)
        Deprecated.
        Constructs a new "OPTIONS" HttpUriRequest initialized with the given URI.
        Parameters:
        uri - a non-null request URI.
        Returns:
        a new "OPTIONS" HttpUriRequest.
        Throws:
        java.lang.IllegalArgumentException - if the URI is null.
      • patch

        public static HttpUriRequest patch​(java.lang.String uri)
        Deprecated.
        Constructs a new "PATCH" HttpUriRequest initialized with the given URI.
        Parameters:
        uri - a non-null request URI.
        Returns:
        a new "PATCH" HttpUriRequest.
        Throws:
        java.lang.IllegalArgumentException - if the URI is null.
      • patch

        public static HttpUriRequest patch​(java.net.URI uri)
        Deprecated.
        Constructs a new "PATCH" HttpUriRequest initialized with the given URI.
        Parameters:
        uri - a non-null request URI.
        Returns:
        a new "PATCH" HttpUriRequest.
        Throws:
        java.lang.IllegalArgumentException - if the URI is null.
      • post

        public static HttpUriRequest post​(java.lang.String uri)
        Deprecated.
        Constructs a new "POST" HttpUriRequest initialized with the given URI.
        Parameters:
        uri - a non-null request URI.
        Returns:
        a new "POST" HttpUriRequest.
        Throws:
        java.lang.IllegalArgumentException - if the URI is null.
      • post

        public static HttpUriRequest post​(java.net.URI uri)
        Deprecated.
        Constructs a new "POST" HttpUriRequest initialized with the given URI.
        Parameters:
        uri - a non-null request URI.
        Returns:
        a new "POST" HttpUriRequest.
        Throws:
        java.lang.IllegalArgumentException - if the URI is null.
      • put

        public static HttpUriRequest put​(java.lang.String uri)
        Deprecated.
        Constructs a new "PUT" HttpUriRequest initialized with the given URI.
        Parameters:
        uri - a non-null request URI.
        Returns:
        a new "PUT" HttpUriRequest.
        Throws:
        java.lang.IllegalArgumentException - if the URI is null.
      • put

        public static HttpUriRequest put​(java.net.URI uri)
        Deprecated.
        Constructs a new "PUT" HttpUriRequest initialized with the given URI.
        Parameters:
        uri - a non-null request URI.
        Returns:
        a new "PUT" HttpUriRequest.
        Throws:
        java.lang.IllegalArgumentException - if the URI is null.
      • trace

        public static HttpUriRequest trace​(java.lang.String uri)
        Deprecated.
        Constructs a new "TRACE" HttpUriRequest initialized with the given URI.
        Parameters:
        uri - a non-null request URI.
        Returns:
        a new "TRACE" HttpUriRequest.
        Throws:
        java.lang.IllegalArgumentException - if the URI is null.
      • trace

        public static HttpUriRequest trace​(java.net.URI uri)
        Deprecated.
        Constructs a new "TRACE" HttpUriRequest initialized with the given URI.
        Parameters:
        uri - a non-null request URI.
        Returns:
        a new "TRACE" HttpUriRequest.
        Throws:
        java.lang.IllegalArgumentException - if the URI is null.