Record Class DynamicPathRequest<T>

java.lang.Object
java.lang.Record
io.john.amiscaray.quak.http.request.DynamicPathRequest<T>
Type Parameters:
T - The type of the request body.
Record Components:
headers - The headers as a map.
queryParams - The query parameters as a map.
method - The request method.
pathVariables - The path variables as a map.
body - The request body.
attributes - The attributes for the request (for server-side use).
All Implemented Interfaces:
Request<T>

public record DynamicPathRequest<T>(Map<String,String> headers, Map<String,String> queryParams, RequestMethod method, Map<String,String> pathVariables, T body, Map<String,Object> attributes) extends Record implements Request<T>
A request for a path with path variables.
  • Constructor Details

    • DynamicPathRequest

      public DynamicPathRequest(RequestMethod method, Map<String,String> pathVariables, T body)
      Create a DynamicPathRequest with empty headers, query params, and attributes.
      Parameters:
      method - The HTTP method.
      pathVariables - The path variables as a map.
      body - The request body.
    • DynamicPathRequest

      public DynamicPathRequest(Map<String,String> headers, RequestMethod method, Map<String,String> pathVariables, T body)
      Create a DynamicPathRequest with empty query params, and attributes.
      Parameters:
      headers - The headers as a map.
      method - The HTTP method.
      pathVariables - The path variables as a map.
      body - The request body.
    • DynamicPathRequest

      public DynamicPathRequest(Map<String,String> pathVariables, Map<String,String> queryParams, T body)
      Create a DynamicPathRequest with empty headers and attributes.
      Parameters:
      pathVariables - The path variables as a map.
      queryParams - The query params as a map.
      body - The request body.
    • DynamicPathRequest

      public DynamicPathRequest(Map<String,String> headers, Map<String,String> queryParams, RequestMethod method, Map<String,String> pathVariables, T body, Map<String,Object> attributes)
      Creates an instance of a DynamicPathRequest record class.
      Parameters:
      headers - the value for the headers record component
      queryParams - the value for the queryParams record component
      method - the value for the method record component
      pathVariables - the value for the pathVariables record component
      body - the value for the body record component
      attributes - the value for the attributes 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.
    • headers

      public Map<String,String> headers()
      Returns the value of the headers record component.
      Specified by:
      headers in interface Request<T>
      Returns:
      the value of the headers record component
    • queryParams

      public Map<String,String> queryParams()
      Returns the value of the queryParams record component.
      Specified by:
      queryParams in interface Request<T>
      Returns:
      the value of the queryParams record component
    • method

      public RequestMethod method()
      Returns the value of the method record component.
      Specified by:
      method in interface Request<T>
      Returns:
      the value of the method record component
    • pathVariables

      public Map<String,String> pathVariables()
      Returns the value of the pathVariables record component.
      Returns:
      the value of the pathVariables record component
    • body

      public T body()
      Returns the value of the body record component.
      Specified by:
      body in interface Request<T>
      Returns:
      the value of the body record component
    • attributes

      public Map<String,Object> attributes()
      Returns the value of the attributes record component.
      Specified by:
      attributes in interface Request<T>
      Returns:
      the value of the attributes record component