Add the data transaction of sdnc.
[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 org.slf4j.Logger;
21 //import org.slf4j.LoggerFactory;
22
23 import java.text.SimpleDateFormat;
24 import java.util.ArrayList;
25 import java.util.Date;
26 import java.util.UUID;
27
28 import org.onap.aai.esr.entity.aai.EsrSystemInfo;
29 import org.onap.aai.esr.entity.aai.EsrSystemInfoList;
30
31 public class ExtsysUtil {
32 //  private final static Logger logger = LoggerFactory.getLogger(ExtsysUtil.class);
33
34   public static String generateId() {
35     return UUID.randomUUID().toString();
36   }
37
38   public static boolean isNotEmpty(String str) {
39     return str != null && !"".equals(str) && str.length() > 0;
40   }
41
42   /**
43    * change object to str.
44    */
45   public static String objectToString(Object obj) {
46     Gson gson = new Gson();
47     if (obj != null) {
48       return gson.toJson(obj);
49     } else {
50       return null;
51     }
52   }
53
54   public static String getNowTime() {
55     SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
56     return sdf.format(new Date());
57   }
58   
59   public static EsrSystemInfoList getEsrSystemInfoListFromAuthInfo(EsrSystemInfo esrSystemInfoObj) {
60     EsrSystemInfoList esrSystemInfoList = new EsrSystemInfoList();
61     ArrayList<EsrSystemInfo> esrSystemInfo = new ArrayList<EsrSystemInfo>();
62     esrSystemInfo.add(esrSystemInfoObj);
63     esrSystemInfoList.setEsrSystemInfo(esrSystemInfo);
64     return esrSystemInfoList;
65   }
66   
67   public static EsrSystemInfoList getEsrSystemInfoListFromAuthInfoList(ArrayList<EsrSystemInfo> esrSystemInfo) {
68     EsrSystemInfoList esrSystemInfoList = new EsrSystemInfoList();
69     esrSystemInfoList.setEsrSystemInfo(esrSystemInfo);;
70     return esrSystemInfoList;
71   }
72 }