Record Class A2AService.A2ATool.A2AToolOutput

java.lang.Object
java.lang.Record
com.mulesoft.modules.agent.broker.internal.tool.a2a.A2AService.A2ATool.A2AToolOutput
Enclosing class:
A2AService.A2ATool

public static record A2AService.A2ATool.A2AToolOutput(List<io.a2a.spec.Part<?>> message, List<io.a2a.spec.Artifact> artifacts) extends Record
  • Constructor Summary

    Constructors
    Constructor
    Description
    A2AToolOutput(List<io.a2a.spec.Part<?>> message, List<io.a2a.spec.Artifact> artifacts)
    Creates an instance of a A2AToolOutput record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    List<io.a2a.spec.Artifact>
    Returns the value of the artifacts record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    List<io.a2a.spec.Part<?>>
    Returns the value of the message record component.
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

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

    • A2AToolOutput

      public A2AToolOutput(List<io.a2a.spec.Part<?>> message, List<io.a2a.spec.Artifact> artifacts)
      Creates an instance of a A2AToolOutput record class.
      Parameters:
      message - the value for the message record component
      artifacts - the value for the artifacts 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.
    • message

      public List<io.a2a.spec.Part<?>> message()
      Returns the value of the message record component.
      Returns:
      the value of the message record component
    • artifacts

      public List<io.a2a.spec.Artifact> artifacts()
      Returns the value of the artifacts record component.
      Returns:
      the value of the artifacts record component