refs #712: authenticate backoffice MCP user tokens

This commit is contained in:
devmrko
2026-07-23 14:45:18 +09:00
parent ce4b418603
commit 1917df09a2
18 changed files with 525 additions and 37 deletions

View File

@@ -0,0 +1,8 @@
package com.cloudhandson.vpdbackoffice.service;
/** Validates an HMM backoffice bearer token without retaining its plaintext value. */
@FunctionalInterface
public interface HmmMcpBearerAuthenticator {
HmmMcpPrincipal authenticate(String bearerToken);
}