Skip to content

Commit

Permalink
OSFUSE-283: Support using a more complex dom object for the for confi…
Browse files Browse the repository at this point in the history
…guration.
  • Loading branch information
chirino committed Sep 27, 2016
1 parent 9946252 commit 362885e
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ public class BuildImageConfiguration {
*/
private String from;

/**
* @parameter
*/
private Properties fromExt;

/**
* @parameter
*/
Expand Down Expand Up @@ -154,6 +159,10 @@ public String getFrom() {
return from;
}

public Properties getFromExt() {
return fromExt;
}

public String getRegistry() {
return registry;
}
Expand Down Expand Up @@ -257,6 +266,11 @@ public Builder from(String from) {
return this;
}

public Builder fromExt(Properties fromExt) {
config.fromExt = fromExt;
return this;
}

public Builder registry(String registry) {
config.registry = registry;
return this;
Expand Down

0 comments on commit 362885e

Please sign in to comment.