All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkiverse.openapi.generator.providers.AuthProvider Maven / Gradle / Ivy

The newest version!
package io.quarkiverse.openapi.generator.providers;

import java.util.List;

import jakarta.ws.rs.client.ClientRequestFilter;

/**
 * Authentication Provider for {@link ClientRequestFilter}s generated by the extension.
 */
public interface AuthProvider extends ClientRequestFilter {

    /**
     * Get the name of the Security Provider as defined in the OpenAPI Spec file.
     *
     * @see OpenAPI Spec - Security Requirement
     *      Object
     */
    String getName();

    List operationsToFilter();

    AuthProvider addOperation(OperationAuthInfo operationAuthInfo);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy