Interface PermissionHandler

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface PermissionHandler
Functional interface for handling permission requests from the AI assistant.

When the assistant needs permission to perform certain actions (such as executing tools or accessing resources), this handler is invoked to approve or deny the request.

Example Implementation


 PermissionHandler handler = (request, invocation) -> {
 	// Check the permission kind
 	if ("dangerous-action".equals(request.getKind())) {
 		// Deny dangerous actions
 		return CompletableFuture.completedFuture(new PermissionRequestResult().setKind("user-denied"));
 	}

 	// Approve other requests
 	return CompletableFuture.completedFuture(new PermissionRequestResult().setKind("user-approved"));
 };
 
Since:
1.0.0
See Also:
  • Method Details

    • handle

      Handles a permission request from the assistant.

      The handler should evaluate the request and return a result indicating whether the permission is granted or denied.

      Parameters:
      request - the permission request details
      invocation - the invocation context with session information
      Returns:
      a future that completes with the permission decision