-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Config Doc - Add more information to config metadata
- Loading branch information
Showing
2 changed files
with
22 additions
and
5 deletions.
There are no files selected for viewing
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
5 changes: 4 additions & 1 deletion
5
...uarkus/maven/extension/deployment/metadata/model/spring/SpringConfigMetadataProperty.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 |
---|---|---|
@@ -1,6 +1,9 @@ | ||
package io.quarkus.maven.extension.deployment.metadata.model.spring; | ||
|
||
public record SpringConfigMetadataProperty(String name, String type, String description, String sourceType, String defaultValue, | ||
public record SpringConfigMetadataProperty(String name, String type, String description, | ||
String sourceType, | ||
// these two are not in the Spring format but were explicitly requested | ||
String sourceField, String sourceMethod, String defaultValue, | ||
SpringConfigMetadataDeprecation deprecation, QuarkusConfigAdditionalMetadataProperty quarkus) { | ||
|
||
} |