Record Class DefaultHttpClientRequest

java.lang.Object
java.lang.Record
ru.tinkoff.kora.http.client.common.request.DefaultHttpClientRequest
All Implemented Interfaces:
HttpClientRequest

public record DefaultHttpClientRequest(String method, URI uri, String uriTemplate, ru.tinkoff.kora.http.common.header.MutableHttpHeaders headers, ru.tinkoff.kora.http.common.body.HttpBodyOutput body, @Nullable Duration requestTimeout) extends Record implements HttpClientRequest
  • Constructor Summary

    Constructors
    Constructor
    Description
    DefaultHttpClientRequest(String method, URI uri, String uriTemplate, ru.tinkoff.kora.http.common.header.MutableHttpHeaders headers, ru.tinkoff.kora.http.common.body.HttpBodyOutput body, Duration requestTimeout)
    Creates an instance of a DefaultHttpClientRequest record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    ru.tinkoff.kora.http.common.body.HttpBodyOutput
    Returns the value of the body record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    ru.tinkoff.kora.http.common.header.MutableHttpHeaders
    Returns the value of the headers record component.
    Returns the value of the method record component.
    Returns the value of the requestTimeout record component.
    final String
    Returns a string representation of this record class.
    uri()
    Returns the value of the uri record component.
    Returns the value of the uriTemplate record component.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface ru.tinkoff.kora.http.client.common.request.HttpClientRequest

    toBuilder
  • Constructor Details

    • DefaultHttpClientRequest

      public DefaultHttpClientRequest(String method, URI uri, String uriTemplate, ru.tinkoff.kora.http.common.header.MutableHttpHeaders headers, ru.tinkoff.kora.http.common.body.HttpBodyOutput body, @Nullable Duration requestTimeout)
      Creates an instance of a DefaultHttpClientRequest record class.
      Parameters:
      method - the value for the method record component
      uri - the value for the uri record component
      uriTemplate - the value for the uriTemplate record component
      headers - the value for the headers record component
      body - the value for the body record component
      requestTimeout - the value for the requestTimeout record component
  • Method Details

    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • method

      public String method()
      Returns the value of the method record component.
      Specified by:
      method in interface HttpClientRequest
      Returns:
      the value of the method record component
    • uri

      public URI uri()
      Returns the value of the uri record component.
      Specified by:
      uri in interface HttpClientRequest
      Returns:
      the value of the uri record component
    • uriTemplate

      public String uriTemplate()
      Returns the value of the uriTemplate record component.
      Specified by:
      uriTemplate in interface HttpClientRequest
      Returns:
      the value of the uriTemplate record component
    • headers

      public ru.tinkoff.kora.http.common.header.MutableHttpHeaders headers()
      Returns the value of the headers record component.
      Specified by:
      headers in interface HttpClientRequest
      Returns:
      the value of the headers record component
    • body

      public ru.tinkoff.kora.http.common.body.HttpBodyOutput body()
      Returns the value of the body record component.
      Specified by:
      body in interface HttpClientRequest
      Returns:
      the value of the body record component
    • requestTimeout

      @Nullable public Duration requestTimeout()
      Returns the value of the requestTimeout record component.
      Specified by:
      requestTimeout in interface HttpClientRequest
      Returns:
      the value of the requestTimeout record component