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