Fix the nonstandard coding.
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / util / ExtsysUtil.java
1 /**
2  * Copyright 2016-2017 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.aai.esr.util;
17
18 import com.google.gson.Gson;
19
20 import java.util.ArrayList;
21 import java.util.List;
22 import java.util.UUID;
23 import org.onap.aai.esr.entity.aai.EsrSystemInfo;
24 import org.onap.aai.esr.entity.aai.EsrSystemInfoList;
25
26 public class ExtsysUtil {
27
28   public String generateId() {
29     return UUID.randomUUID().toString();
30   }
31
32   /**
33    * change object to str.
34    */
35   public String objectToString(Object obj) {
36     Gson gson = new Gson();
37     if (obj != null) {
38       return gson.toJson(obj);
39     } else {
40       return null;
41     }
42   }
43
44   public EsrSystemInfoList getEsrSystemInfoListFromAuthInfo(EsrSystemInfo esrSystemInfoObj) {
45     EsrSystemInfoList esrSystemInfoList = new EsrSystemInfoList();
46     List<EsrSystemInfo> esrSystemInfo = new ArrayList<>();
47     esrSystemInfo.add(esrSystemInfoObj);
48     esrSystemInfoList.setEsrSystemInfo(esrSystemInfo);
49     return esrSystemInfoList;
50   }
51   
52   public EsrSystemInfoList getEsrSystemInfoListFromAuthInfoList(List<EsrSystemInfo> esrSystemInfo) {
53     EsrSystemInfoList esrSystemInfoList = new EsrSystemInfoList();
54     esrSystemInfoList.setEsrSystemInfo(esrSystemInfo);;
55     return esrSystemInfoList;
56   }
57 }