Interface AuthProvider
-
- All Superinterfaces:
javax.ws.rs.client.ClientRequestFilter
- All Known Implementing Classes:
ApiKeyAuthenticationProvider
,BasicAuthenticationProvider
,BearerAuthenticationProvider
,OAuth2AuthenticationProvider
public interface AuthProvider extends javax.ws.rs.client.ClientRequestFilter
Authentication Provider forClientRequestFilter
s generated by the extension.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AuthProvider
addOperation(OperationAuthInfo operationAuthInfo)
String
getName()
Get the name of the Security Provider as defined in the OpenAPI Spec file.List<OperationAuthInfo>
operationsToFilter()
-
-
-
Method Detail
-
getName
String getName()
Get the name of the Security Provider as defined in the OpenAPI Spec file.
-
operationsToFilter
List<OperationAuthInfo> operationsToFilter()
-
addOperation
AuthProvider addOperation(OperationAuthInfo operationAuthInfo)
-
-