X-Git-Url: https://gerrit.onap.org/r/gitweb?p=aai%2Fesr-server.git;a=blobdiff_plain;f=esr-mgr%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Faai%2Fesr%2Fentity%2Faai%2FEsrSystemInfo.java;fp=esr-mgr%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Faai%2Fesr%2Fentity%2Faai%2FEsrSystemInfo.java;h=b6be9a7e0ac218e5a5f9e07edfce7cbc9795e9d7;hp=0000000000000000000000000000000000000000;hb=ed8d8775c8d87601bceb9fe98715de1a4167287c;hpb=91e4d4835374d407f8a31b61f2cd601a259b13b1 diff --git a/esr-mgr/src/main/java/org/onap/aai/esr/entity/aai/EsrSystemInfo.java b/esr-mgr/src/main/java/org/onap/aai/esr/entity/aai/EsrSystemInfo.java new file mode 100644 index 0000000..b6be9a7 --- /dev/null +++ b/esr-mgr/src/main/java/org/onap/aai/esr/entity/aai/EsrSystemInfo.java @@ -0,0 +1,31 @@ +/** + * Copyright 2017 ZTE Corporation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.onap.aai.esr.entity.aai; + +import java.util.ArrayList; + +public class EsrSystemInfo { + + private ArrayList esrSystemInfo; + + public ArrayList getEsrSystemInfo() { + return esrSystemInfo; + } + + public void setEsrSystemInfo(ArrayList esrSystemInfo) { + this.esrSystemInfo = esrSystemInfo; + } +}