Skip to content

Commit

Permalink
Merge pull request #67 from InseeFrLab/addDefaultIpProtection
Browse files Browse the repository at this point in the history
add defaultIpProtection to region modele
  • Loading branch information
fcomte authored Aug 26, 2020
2 parents 4bdc3b7 + 7840da7 commit 2c284ed
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ public void setOnyxiaAPI(OnyxiaAPI onyxiaAPI) {
public static class Services {

private Service.ServiceType type;
private boolean defaultIpProtection;
private String network;
private String namespacePrefix;
private String marathonDnsSuffix;
Expand All @@ -91,6 +92,14 @@ public void setType(Service.ServiceType type) {
this.type = type;
}

public boolean getDefaultIpProtection() {
return defaultIpProtection;
}

public void setDefaultIpProtection(boolean defaultIpProtection){
this.defaultIpProtection = defaultIpProtection;
}

public String getNetwork() {
return network;
}
Expand Down

0 comments on commit 2c284ed

Please sign in to comment.