Class HttpBearerConverter
- java.lang.Object
-
- software.amazon.smithy.openapi.fromsmithy.security.HttpBearerConverter
-
- All Implemented Interfaces:
SecuritySchemeConverter<HttpBearerAuthTrait>
public final class HttpBearerConverter extends java.lang.Object implements SecuritySchemeConverter<HttpBearerAuthTrait>
Uses the Bearer scheme of the Authentication header.
-
-
Constructor Summary
Constructors Constructor Description HttpBearerConverter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SecurityScheme
createSecurityScheme(Context<? extends Trait> context, HttpBearerAuthTrait trait)
Creates an OpenAPI security scheme.java.lang.Class<HttpBearerAuthTrait>
getAuthSchemeType()
Get the U that matches this converter.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface software.amazon.smithy.openapi.fromsmithy.SecuritySchemeConverter
createSecurityRequirements, getAuthRequestHeaders, getAuthResponseHeaders, getAuthSchemeId, getOpenApiAuthSchemeName, usesHttpCredentials
-
-
-
-
Method Detail
-
getAuthSchemeType
public java.lang.Class<HttpBearerAuthTrait> getAuthSchemeType()
Description copied from interface:SecuritySchemeConverter
Get the U that matches this converter.- Specified by:
getAuthSchemeType
in interfaceSecuritySchemeConverter<HttpBearerAuthTrait>
- Returns:
- The Smithy security auth scheme ID.
-
createSecurityScheme
public SecurityScheme createSecurityScheme(Context<? extends Trait> context, HttpBearerAuthTrait trait)
Description copied from interface:SecuritySchemeConverter
Creates an OpenAPI security scheme.- Specified by:
createSecurityScheme
in interfaceSecuritySchemeConverter<HttpBearerAuthTrait>
- Parameters:
context
- Conversion context.trait
- Authentication trait to convert.- Returns:
- The generated security scheme
- See Also:
- Security Scheme Object
-
-