Package io.quarkiverse.openapi.generator
Class AuthsConfig
- java.lang.Object
-
- io.quarkiverse.openapi.generator.AuthsConfig
-
public class AuthsConfig extends Object
-
-
Field Summary
Fields Modifier and Type Field Description Map<String,AuthConfig>
authConfigs
Configurations for the individual securitySchemes present on a given OpenApi spec definition file.
-
Constructor Summary
Constructors Constructor Description AuthsConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Optional<AuthConfig>
getItemConfig(String authConfig)
String
toString()
-
-
-
Field Detail
-
authConfigs
@ConfigItem(name="<<parent>>") public Map<String,AuthConfig> authConfigs
Configurations for the individual securitySchemes present on a given OpenApi spec definition file.The key must be any of the sanitized names of the securitySchemes. For example, given a file named petstore.json with a securityScheme named "petstore-auth", we have that the file name is sanitized into the name petstore_json and the security scheme name is sanitized into the name "petstore_auth". And thus, the specific configurations for this security scheme must start with the prefix quarkus.openapi-generator.petstore_json.auth.petstore_auth
- See Also:
SpecItemConfig
,AuthConfig
-
-