-
Notifications
You must be signed in to change notification settings - Fork 89
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
17 changed files
with
272 additions
and
176 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
...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,22 @@ | ||
package io.quarkiverse.openapi.generator.deployment; | ||
|
||
import io.quarkus.builder.item.MultiBuildItem; | ||
|
||
public final class AuthProviderBuildItem extends MultiBuildItem { | ||
|
||
AuthProviderBuildItem(String openApiSpecId, String name) { | ||
this.openApiSpecId = openApiSpecId; | ||
this.name = name; | ||
} | ||
|
||
final String openApiSpecId; | ||
final String name; | ||
|
||
public String getOpenApiSpecId() { | ||
return openApiSpecId; | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
} |
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.