Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
*/
public final class CancelTaskRequest_v0_3 extends NonStreamingJSONRPCRequest_v0_3<TaskIdParams_v0_3> {

private CancelTaskRequest_v0_3() {
}


public static final String METHOD = "tasks/cancel";

public CancelTaskRequest_v0_3(String jsonrpc, Object id, String method, TaskIdParams_v0_3 params) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@

public final class CancelTaskResponse_v0_3 extends JSONRPCResponse_v0_3<Task_v0_3> {

private CancelTaskResponse_v0_3() {
}

public CancelTaskResponse_v0_3(String jsonrpc, Object id, Task_v0_3 result, JSONRPCError_v0_3 error) {
super(jsonrpc, id, result, error, Task_v0_3.class);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
*/
public final class DeleteTaskPushNotificationConfigRequest_v0_3 extends NonStreamingJSONRPCRequest_v0_3<DeleteTaskPushNotificationConfigParams_v0_3> {

private DeleteTaskPushNotificationConfigRequest_v0_3() {
}


public static final String METHOD = "tasks/pushNotificationConfig/delete";

public DeleteTaskPushNotificationConfigRequest_v0_3(String jsonrpc, Object id, String method, DeleteTaskPushNotificationConfigParams_v0_3 params) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
*/
public final class DeleteTaskPushNotificationConfigResponse_v0_3 extends JSONRPCResponse_v0_3<Void> {

private DeleteTaskPushNotificationConfigResponse_v0_3() {
}

public DeleteTaskPushNotificationConfigResponse_v0_3(String jsonrpc, Object id, Void result, JSONRPCError_v0_3 error) {
super(jsonrpc, id, result, error, Void.class);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
*/
public final class GetAuthenticatedExtendedCardRequest_v0_3 extends NonStreamingJSONRPCRequest_v0_3<Void> {

private GetAuthenticatedExtendedCardRequest_v0_3() {
}


public static final String METHOD = "agent/getAuthenticatedExtendedCard";

public GetAuthenticatedExtendedCardRequest_v0_3(String jsonrpc, Object id, String method, Void params) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
*/
public final class GetAuthenticatedExtendedCardResponse_v0_3 extends JSONRPCResponse_v0_3<AgentCard_v0_3> {

private GetAuthenticatedExtendedCardResponse_v0_3() {
}

public GetAuthenticatedExtendedCardResponse_v0_3(String jsonrpc, Object id, AgentCard_v0_3 result, JSONRPCError_v0_3 error) {
super(jsonrpc, id, result, error, AgentCard_v0_3.class);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
*/
public final class GetTaskPushNotificationConfigRequest_v0_3 extends NonStreamingJSONRPCRequest_v0_3<GetTaskPushNotificationConfigParams_v0_3> {

private GetTaskPushNotificationConfigRequest_v0_3() {
}


public static final String METHOD = "tasks/pushNotificationConfig/get";

public GetTaskPushNotificationConfigRequest_v0_3(String jsonrpc, Object id, String method, GetTaskPushNotificationConfigParams_v0_3 params) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
*/
public final class GetTaskPushNotificationConfigResponse_v0_3 extends JSONRPCResponse_v0_3<TaskPushNotificationConfig_v0_3> {

private GetTaskPushNotificationConfigResponse_v0_3() {
}

public GetTaskPushNotificationConfigResponse_v0_3(String jsonrpc, Object id, TaskPushNotificationConfig_v0_3 result, JSONRPCError_v0_3 error) {
super(jsonrpc, id, result, error, TaskPushNotificationConfig_v0_3.class);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
*/
public final class GetTaskRequest_v0_3 extends NonStreamingJSONRPCRequest_v0_3<TaskQueryParams_v0_3> {

private GetTaskRequest_v0_3() {
}


public static final String METHOD = "tasks/get";

public GetTaskRequest_v0_3(String jsonrpc, Object id, String method, TaskQueryParams_v0_3 params) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
*/
public final class GetTaskResponse_v0_3 extends JSONRPCResponse_v0_3<Task_v0_3> {

private GetTaskResponse_v0_3() {
}

public GetTaskResponse_v0_3(String jsonrpc, Object id, Task_v0_3 result, JSONRPCError_v0_3 error) {
super(jsonrpc, id, result, error, Task_v0_3.class);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
*/
public final class JSONRPCErrorResponse_v0_3 extends JSONRPCResponse_v0_3<Void> {

private JSONRPCErrorResponse_v0_3() {
}

/**
* Constructs a JSON-RPC error response with all fields.
* <p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
*/
public final class ListTaskPushNotificationConfigRequest_v0_3 extends NonStreamingJSONRPCRequest_v0_3<ListTaskPushNotificationConfigParams_v0_3> {

private ListTaskPushNotificationConfigRequest_v0_3() {
}


public static final String METHOD = "tasks/pushNotificationConfig/list";

public ListTaskPushNotificationConfigRequest_v0_3(String jsonrpc, Object id, String method, ListTaskPushNotificationConfigParams_v0_3 params) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
*/
public final class ListTaskPushNotificationConfigResponse_v0_3 extends JSONRPCResponse_v0_3<List<TaskPushNotificationConfig_v0_3>> {

private ListTaskPushNotificationConfigResponse_v0_3() {
}

public ListTaskPushNotificationConfigResponse_v0_3(String jsonrpc, Object id, List<TaskPushNotificationConfig_v0_3> result, JSONRPCError_v0_3 error) {
super(jsonrpc, id, result, error, (Class<List<TaskPushNotificationConfig_v0_3>>) (Class<?>) List.class);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
*/
public final class SendMessageRequest_v0_3 extends NonStreamingJSONRPCRequest_v0_3<MessageSendParams_v0_3> {

private SendMessageRequest_v0_3() {
}


public static final String METHOD = "message/send";

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
*/
public final class SendMessageResponse_v0_3 extends JSONRPCResponse_v0_3<EventKind_v0_3> {

private SendMessageResponse_v0_3() {
}

public SendMessageResponse_v0_3(String jsonrpc, Object id, EventKind_v0_3 result, JSONRPCError_v0_3 error) {
super(jsonrpc, id, result, error, EventKind_v0_3.class);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
*/
public final class SendStreamingMessageRequest_v0_3 extends StreamingJSONRPCRequest_v0_3<MessageSendParams_v0_3> {

private SendStreamingMessageRequest_v0_3() {
}


public static final String METHOD = "message/stream";

public SendStreamingMessageRequest_v0_3(String jsonrpc, Object id, String method, MessageSendParams_v0_3 params) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
*/
public final class SendStreamingMessageResponse_v0_3 extends JSONRPCResponse_v0_3<StreamingEventKind_v0_3> {

private SendStreamingMessageResponse_v0_3() {
}

public SendStreamingMessageResponse_v0_3(String jsonrpc, Object id, StreamingEventKind_v0_3 result, JSONRPCError_v0_3 error) {
super(jsonrpc, id, result, error, StreamingEventKind_v0_3.class);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
*/
public final class SetTaskPushNotificationConfigRequest_v0_3 extends NonStreamingJSONRPCRequest_v0_3<TaskPushNotificationConfig_v0_3> {

private SetTaskPushNotificationConfigRequest_v0_3() {
}


public static final String METHOD = "tasks/pushNotificationConfig/set";

public SetTaskPushNotificationConfigRequest_v0_3(String jsonrpc, Object id, String method, TaskPushNotificationConfig_v0_3 params) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
*/
public final class SetTaskPushNotificationConfigResponse_v0_3 extends JSONRPCResponse_v0_3<TaskPushNotificationConfig_v0_3> {

private SetTaskPushNotificationConfigResponse_v0_3() {
}

public SetTaskPushNotificationConfigResponse_v0_3(String jsonrpc, Object id, TaskPushNotificationConfig_v0_3 result, JSONRPCError_v0_3 error) {
super(jsonrpc, id, result, error, TaskPushNotificationConfig_v0_3.class);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
*/
public final class TaskResubscriptionRequest_v0_3 extends StreamingJSONRPCRequest_v0_3<TaskIdParams_v0_3> {

private TaskResubscriptionRequest_v0_3() {
}


public static final String METHOD = "tasks/resubscribe";

public TaskResubscriptionRequest_v0_3(String jsonrpc, Object id, String method, TaskIdParams_v0_3 params) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
*/
public final class A2AErrorResponse extends A2AResponse<Void> {

private A2AErrorResponse() {
}


/**
* Constructs a JSON-RPC error response with all fields.
* <p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@
*/
public final class CancelTaskRequest extends NonStreamingJSONRPCRequest<CancelTaskParams> {

private CancelTaskRequest() {
}


/**
* Creates a new CancelTaskRequest with the specified JSON-RPC parameters.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@

public final class CancelTaskResponse extends A2AResponse<Task> {

private CancelTaskResponse() {
}


/**
* Constructs a CancelTaskResponse with full parameters.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@
*/
public final class CreateTaskPushNotificationConfigRequest extends NonStreamingJSONRPCRequest<TaskPushNotificationConfig> {

private CreateTaskPushNotificationConfigRequest() {
}


/**
* Constructs request with all parameters.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@
*/
public final class CreateTaskPushNotificationConfigResponse extends A2AResponse<TaskPushNotificationConfig> {

private CreateTaskPushNotificationConfigResponse() {
}


/**
* Constructs response with all parameters.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@
*/
public final class DeleteTaskPushNotificationConfigRequest extends NonStreamingJSONRPCRequest<DeleteTaskPushNotificationConfigParams> {

private DeleteTaskPushNotificationConfigRequest() {
}


/**
* Creates a new DeleteTaskPushNotificationConfigRequest with the specified JSON-RPC parameters.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
*/
public final class DeleteTaskPushNotificationConfigResponse extends A2AResponse<Void> {

private DeleteTaskPushNotificationConfigResponse() {
}


/**
* Creates a new DeleteTaskPushNotificationConfigResponse with full JSON-RPC parameters.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@
*/
public final class GetExtendedAgentCardRequest extends NonStreamingJSONRPCRequest<Void> {

private GetExtendedAgentCardRequest() {
}


/**
* Constructs request with full parameters.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@
*/
public final class GetExtendedAgentCardResponse extends A2AResponse<AgentCard> {

private GetExtendedAgentCardResponse() {
}


/**
* Constructs response with full parameters.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@
*/
public final class GetTaskPushNotificationConfigRequest extends NonStreamingJSONRPCRequest<GetTaskPushNotificationConfigParams> {

private GetTaskPushNotificationConfigRequest() {
}


/**
* Constructs request with all parameters.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@
*/
public final class GetTaskPushNotificationConfigResponse extends A2AResponse<TaskPushNotificationConfig> {

private GetTaskPushNotificationConfigResponse() {
}


/**
* Constructs response with full parameters.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
*/
public final class GetTaskRequest extends NonStreamingJSONRPCRequest<TaskQueryParams> {

private GetTaskRequest() {
}


/**
* Constructs request with all parameters.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
*/
public final class GetTaskResponse extends A2AResponse<Task> {

private GetTaskResponse() {
}


/**
* Constructs response with full parameters.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
*/
public final class ListTaskPushNotificationConfigsRequest extends NonStreamingJSONRPCRequest<ListTaskPushNotificationConfigsParams> {

private ListTaskPushNotificationConfigsRequest() {
}


/**
* Constructs request with all parameters.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
*/
public final class ListTaskPushNotificationConfigsResponse extends A2AResponse<ListTaskPushNotificationConfigsResult> {

private ListTaskPushNotificationConfigsResponse() {
}


/**
* Constructs response with all parameters.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
*/
public final class ListTasksRequest extends NonStreamingJSONRPCRequest<ListTasksParams> {

private ListTasksRequest() {
}


/**
* Constructs request with all parameters.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
*/
public final class ListTasksResponse extends A2AResponse<ListTasksResult> {

private ListTasksResponse() {
}


/**
* Constructs response with all parameters.
*
Expand Down
Loading