summaryrefslogtreecommitdiffstats
path: root/zte/sfc-driver/sfc-driver/src/main/java/org/onap/sfc/SfcDriverConfig.java
diff options
context:
space:
mode:
Diffstat (limited to 'zte/sfc-driver/sfc-driver/src/main/java/org/onap/sfc/SfcDriverConfig.java')
-rw-r--r--zte/sfc-driver/sfc-driver/src/main/java/org/onap/sfc/SfcDriverConfig.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/zte/sfc-driver/sfc-driver/src/main/java/org/onap/sfc/SfcDriverConfig.java b/zte/sfc-driver/sfc-driver/src/main/java/org/onap/sfc/SfcDriverConfig.java
index c3293ab..73d1198 100644
--- a/zte/sfc-driver/sfc-driver/src/main/java/org/onap/sfc/SfcDriverConfig.java
+++ b/zte/sfc-driver/sfc-driver/src/main/java/org/onap/sfc/SfcDriverConfig.java
@@ -30,6 +30,9 @@ public class SfcDriverConfig extends Configuration {
@NotEmpty
private String msbServiceUrl;
+
+ @NotEmpty
+ private String serviceIp;
@JsonProperty
public String getTemplate() {
@@ -57,5 +60,15 @@ public class SfcDriverConfig extends Configuration {
public void setMsbServiceUrl(String msbServiceUrl) {
this.msbServiceUrl = msbServiceUrl;
}
+
+ @JsonProperty
+ public String getServiceIp() {
+ return serviceIp;
+ }
+
+ @JsonProperty
+ public void setServiceIp(String serviceIp) {
+ this.serviceIp = serviceIp;
+ }
} \ No newline at end of file