Package io.modelcontextprotocol.spec
Record Class McpSchema.JSONRPCRequest
java.lang.Object
java.lang.Record
io.modelcontextprotocol.spec.McpSchema.JSONRPCRequest
- All Implemented Interfaces:
McpSchema.JSONRPCMessage
- Enclosing class:
- McpSchema
-
Constructor Summary
ConstructorsConstructorDescriptionJSONRPCRequest(String jsonrpc, String method, Object id, Object params) Creates an instance of aJSONRPCRequestrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.id()Returns the value of theidrecord component.jsonrpc()Returns the value of thejsonrpcrecord component.method()Returns the value of themethodrecord component.params()Returns the value of theparamsrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
JSONRPCRequest
Creates an instance of aJSONRPCRequestrecord class.- Parameters:
jsonrpc- the value for thejsonrpcrecord componentmethod- the value for themethodrecord componentid- the value for theidrecord componentparams- the value for theparamsrecord component
-
-
Method Details
-
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. All components in this record class are compared withObjects::equals(Object,Object). -
jsonrpc
Returns the value of thejsonrpcrecord component.- Specified by:
jsonrpcin interfaceMcpSchema.JSONRPCMessage- Returns:
- the value of the
jsonrpcrecord component
-
method
Returns the value of themethodrecord component.- Returns:
- the value of the
methodrecord component
-
id
Returns the value of theidrecord component.- Returns:
- the value of the
idrecord component
-
params
Returns the value of theparamsrecord component.- Returns:
- the value of the
paramsrecord component
-