Skip to content

Commit

Permalink
Allow extension of InitializrMetadataBuilder
Browse files Browse the repository at this point in the history
Closes gh-1622
  • Loading branch information
mhalbritter committed Feb 7, 2025
1 parent ec57614 commit 7a20417
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,17 @@
* @author Stephane Nicoll
* @see InitializrMetadataCustomizer
*/
public final class InitializrMetadataBuilder {
public class InitializrMetadataBuilder {

private final List<InitializrMetadataCustomizer> customizers = new ArrayList<>();

private final InitializrConfiguration configuration;

private InitializrMetadataBuilder(InitializrConfiguration configuration) {
/**
* Create a new instance with the given configuration.
* @param configuration the configuration to use
*/
protected InitializrMetadataBuilder(InitializrConfiguration configuration) {
this.configuration = configuration;
}

Expand Down

0 comments on commit 7a20417

Please sign in to comment.