Package io.modelcontextprotocol.spec
Record Class McpSchema.JSONRPCNotification
java.lang.Object
java.lang.Record
io.modelcontextprotocol.spec.McpSchema.JSONRPCNotification
- Record Components:
jsonrpc- The JSON-RPC version (must be "2.0")method- The name of the method being notifiedparams- Parameters for the notification
- All Implemented Interfaces:
McpSchema.JSONRPCMessage
- Enclosing class:
- McpSchema
public static record McpSchema.JSONRPCNotification(String jsonrpc, String method, Object params)
extends Record
implements McpSchema.JSONRPCMessage
A notification which does not expect a response.
-
Constructor Summary
ConstructorsConstructorDescriptionJSONRPCNotification(String jsonrpc, String method, Object params) Creates an instance of aJSONRPCNotificationrecord 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.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
-
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
-
params
Returns the value of theparamsrecord component.- Returns:
- the value of the
paramsrecord component
-