summaryrefslogtreecommitdiffstats
path: root/wfenginemgrservice/src/main/java/org/onap/workflow/entity/MsbClientConfig.java
diff options
context:
space:
mode:
Diffstat (limited to 'wfenginemgrservice/src/main/java/org/onap/workflow/entity/MsbClientConfig.java')
-rw-r--r--wfenginemgrservice/src/main/java/org/onap/workflow/entity/MsbClientConfig.java16
1 files changed, 13 insertions, 3 deletions
diff --git a/wfenginemgrservice/src/main/java/org/onap/workflow/entity/MsbClientConfig.java b/wfenginemgrservice/src/main/java/org/onap/workflow/entity/MsbClientConfig.java
index e73c4f2..4867bd6 100644
--- a/wfenginemgrservice/src/main/java/org/onap/workflow/entity/MsbClientConfig.java
+++ b/wfenginemgrservice/src/main/java/org/onap/workflow/entity/MsbClientConfig.java
@@ -16,11 +16,21 @@
package org.onap.workflow.entity;
-import lombok.Data;
-@Data
public class MsbClientConfig {
- private String msbSvrIp;
+ public String getMsbSvrIp() {
+ return msbSvrIp;
+ }
+ public void setMsbSvrIp(String msbSvrIp) {
+ this.msbSvrIp = msbSvrIp;
+ }
+ public Integer getMsbSvrPort() {
+ return msbSvrPort;
+ }
+ public void setMsbSvrPort(Integer msbSvrPort) {
+ this.msbSvrPort = msbSvrPort;
+ }
+ private String msbSvrIp;
private Integer msbSvrPort;
}