-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make composite authentication provider synthetic
- Loading branch information
Showing
11 changed files
with
157 additions
and
160 deletions.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
...ment/src/main/java/io/quarkiverse/openapi/generator/deployment/AuthProviderBuildItem.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package io.quarkiverse.openapi.generator.deployment; | ||
|
||
import io.quarkiverse.openapi.generator.providers.AuthProvider; | ||
import io.quarkus.builder.item.MultiBuildItem; | ||
import io.quarkus.runtime.RuntimeValue; | ||
|
||
public final class AuthProviderBuildItem extends MultiBuildItem { | ||
|
||
AuthProviderBuildItem(String openApiSpecId, RuntimeValue<AuthProvider> authProvider) { | ||
this.openApiSpecId = openApiSpecId; | ||
this.authProvider = authProvider; | ||
} | ||
|
||
final String openApiSpecId; | ||
final RuntimeValue<AuthProvider> authProvider; | ||
|
||
public RuntimeValue<AuthProvider> getAuthProvider() { | ||
return authProvider; | ||
} | ||
|
||
public String getOpenApiSpecId() { | ||
return openApiSpecId; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.