X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=esr-mgr%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Faai%2Fesr%2Fentity%2Faai%2FEsrEms.java;h=e8c402ea9139ad1100b1db8c914569fbc8809dbc;hb=bb02e67db383ee68af8179c350e07a6c1ddffca9;hp=af37abdcbafd3ab3846e47995319c71e4a052201;hpb=ed8d8775c8d87601bceb9fe98715de1a4167287c;p=aai%2Fesr-server.git diff --git a/esr-mgr/src/main/java/org/onap/aai/esr/entity/aai/EsrEms.java b/esr-mgr/src/main/java/org/onap/aai/esr/entity/aai/EsrEms.java index af37abd..e8c402e 100644 --- a/esr-mgr/src/main/java/org/onap/aai/esr/entity/aai/EsrEms.java +++ b/esr-mgr/src/main/java/org/onap/aai/esr/entity/aai/EsrEms.java @@ -20,9 +20,7 @@ public class EsrEms { private String emsId; - private Boolean passive; - - private String remotePath; + private String resouceVersion; private EsrSystemInfoList esrSystemInfoList; @@ -34,22 +32,6 @@ public class EsrEms { this.emsId = emsId; } - public Boolean getPassive() { - return passive; - } - - public void setPassive(Boolean passive) { - this.passive = passive; - } - - public String getRemotePath() { - return remotePath; - } - - public void setRemotePath(String remotePath) { - this.remotePath = remotePath; - } - public EsrSystemInfoList getEsrSystemInfoList() { return esrSystemInfoList; } @@ -57,4 +39,12 @@ public class EsrEms { public void setEsrSystemInfoList(EsrSystemInfoList esrSystemInfoList) { this.esrSystemInfoList = esrSystemInfoList; } + + public String getResouceVersion() { + return resouceVersion; + } + + public void setResouceVersion(String resouceVersion) { + this.resouceVersion = resouceVersion; + } }