java.lang.Object
java.lang.Record
one.jpro.platform.auth.core.http.impl.Request

public record Request(String method, String uri, String version, List<Header> headers, byte[] body) extends Record
This class represents discrete HTTP requests with request line, headers, and body.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Request(String method, String uri, String version, List<Header> headers, byte[] body)
    Creates an instance of a Request record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    byte[]
    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.
    boolean
    hasHeader(String name, String value)
    Checks if the request has a header with the specified name and value.
    header(String name)
    Retrieves the value of the specified header.
    Returns the value of the headers record component.
    Returns the value of the method 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 version record component.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • Request

      public Request(String method, String uri, String version, List<Header> headers, byte[] body)
      Creates an instance of a Request record class.
      Parameters:
      method - the value for the method record component
      uri - the value for the uri record component
      version - the value for the version record component
      headers - the value for the headers record component
      body - the value for the body record component
  • Method Details

    • header

      public String header(String name)
      Retrieves the value of the specified header.
      Parameters:
      name - The name of the header.
      Returns:
      The value of the header, or null if the header is not found.
    • hasHeader

      public boolean hasHeader(String name, String value)
      Checks if the request has a header with the specified name and value.
      Parameters:
      name - The name of the header.
      value - The value of the header.
      Returns:
      true if the request has a header with the specified name and value, false otherwise.
    • 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.
      Returns:
      the value of the method record component
    • uri

      public String uri()
      Returns the value of the uri record component.
      Returns:
      the value of the uri record component
    • version

      public String version()
      Returns the value of the version record component.
      Returns:
      the value of the version record component
    • headers

      public List<Header> headers()
      Returns the value of the headers record component.
      Returns:
      the value of the headers record component
    • body

      public byte[] body()
      Returns the value of the body record component.
      Returns:
      the value of the body record component