Interface authentication schemes.

interface SecurityAuthentication {
    applySecurityAuthentication(context: RequestContext): void | Promise<void>;
    getName(): string;
}

Implemented by

Methods