X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=esr-mgr%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Faai%2Fesr%2Fentity%2Faai%2FEsrSystemInfoList.java;fp=esr-mgr%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Faai%2Fesr%2Fcommon%2FMsbUtil.java;h=535e5db08b4cbfb89abc74eafcd189348366192f;hb=ed8d8775c8d87601bceb9fe98715de1a4167287c;hp=0bd4f01d7b236d47f72fac4560eb5611103d91c7;hpb=91e4d4835374d407f8a31b61f2cd601a259b13b1;p=aai%2Fesr-server.git diff --git a/esr-mgr/src/main/java/org/onap/aai/esr/common/MsbUtil.java b/esr-mgr/src/main/java/org/onap/aai/esr/entity/aai/EsrSystemInfoList.java similarity index 65% rename from esr-mgr/src/main/java/org/onap/aai/esr/common/MsbUtil.java rename to esr-mgr/src/main/java/org/onap/aai/esr/entity/aai/EsrSystemInfoList.java index 0bd4f01..535e5db 100644 --- a/esr-mgr/src/main/java/org/onap/aai/esr/common/MsbUtil.java +++ b/esr-mgr/src/main/java/org/onap/aai/esr/entity/aai/EsrSystemInfoList.java @@ -13,17 +13,17 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.onap.aai.esr.common; +package org.onap.aai.esr.entity.aai; +public class EsrSystemInfoList { -public class MsbUtil { + private EsrSystemInfo esrSystemInfoList; -// public static String getVimBaseUrl() { -// return Config.getConfigration().getMsbServerAddr() + "/api/vim/v1"; -// } -// -// public static String getAaiServiceUrl() { -// return Config.getConfigration().getMsbServerAddr() + "/aai/v11/"; -// } + public EsrSystemInfo getEsrSystemInfoList() { + return esrSystemInfoList; + } + public void setEsrSystemInfoList(EsrSystemInfo esrSystemInfoList) { + this.esrSystemInfoList = esrSystemInfoList; + } }