summaryrefslogtreecommitdiffstats
path: root/zte/sfc-driver/sfc-driver/src/main/java/org/onap/sfc/SfcDriverConfig.java
diff options
context:
space:
mode:
authorLiZi <li.zi30@zte.com.cn>2018-04-18 03:24:02 -0400
committerLiZi <li.zi30@zte.com.cn>2018-04-18 03:29:09 -0400
commitb4407b084b5f3da5a991c4e4374ab327156057ba (patch)
treea11388b3ce3a41e7e256942831566a009e6e77bf /zte/sfc-driver/sfc-driver/src/main/java/org/onap/sfc/SfcDriverConfig.java
parente67348a174fd226c3400522a48e65a0f287eb661 (diff)
Replace the orginal node ip with SERVICE_IPv1.1.02.0.0-ONAPbeijing2.0.0-ONAP
Change-Id: I72eead5325882b63960cdb877477f2ca3d0a6f63 Issue-ID: VFC-884 Signed-off-by: LiZi <li.zi30@zte.com.cn>
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