Package dev.agenor.core.mcp
Record Class McpToolResult
java.lang.Object
java.lang.Record
dev.agenor.core.mcp.McpToolResult
- Record Components:
content- text content returned by the tool (maybe empty on error)isError-trueif the server signaled an error condition
Immutable result of an MCP tool invocation.
-
Constructor Summary
ConstructorsConstructorDescriptionMcpToolResult(String content, boolean isError) Creates an instance of aMcpToolResultrecord class. -
Method Summary
Modifier and TypeMethodDescriptioncontent()Returns the value of thecontentrecord component.final booleanIndicates whether some other object is "equal to" this one.static McpToolResultConvenience factory for error results.final inthashCode()Returns a hash code value for this object.booleanisError()Returns the value of theisErrorrecord component.static McpToolResultConvenience factory for successful results.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Method Details
-
success
Convenience factory for successful results. -
error
Convenience factory for error results. -
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. -
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. -
equals
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
content
Returns the value of thecontentrecord component.- Returns:
- the value of the
contentrecord component
-
isError
public boolean isError()Returns the value of theisErrorrecord component.- Returns:
- the value of the
isErrorrecord component
-