SchedulerController up
[portal.git] / portal-BE / src / main / java / org / onap / portal / scheduler / SchedulerUtil.java
1 /*
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  * Modifications Copyright (c) 2019 Samsung
8  * ===================================================================
9  *
10  * Unless otherwise specified, all software contained herein is licensed
11  * under the Apache License, Version 2.0 (the "License");
12  * you may not use this software except in compliance with the License.
13  * You may obtain a copy of the License at
14  *
15  *             http://www.apache.org/licenses/LICENSE-2.0
16  *
17  * Unless required by applicable law or agreed to in writing, software
18  * distributed under the License is distributed on an "AS IS" BASIS,
19  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20  * See the License for the specific language governing permissions and
21  * limitations under the License.
22  *
23  * Unless otherwise specified, all documentation contained herein is licensed
24  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
25  * you may not use this documentation except in compliance with the License.
26  * You may obtain a copy of the License at
27  *
28  *             https://creativecommons.org/licenses/by/4.0/
29  *
30  * Unless required by applicable law or agreed to in writing, documentation
31  * distributed under the License is distributed on an "AS IS" BASIS,
32  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33  * See the License for the specific language governing permissions and
34  * limitations under the License.
35  *
36  * ============LICENSE_END============================================
37  *
38  *
39  */
40
41 package org.onap.portal.scheduler;
42
43 import com.fasterxml.jackson.databind.ObjectMapper;
44 import java.util.Date;
45 import org.onap.portal.scheduler.restobjects.GetTimeSlotsRestObject;
46 import org.onap.portal.scheduler.restobjects.PostCreateNewVnfRestObject;
47 import org.onap.portal.scheduler.restobjects.PostSubmitVnfChangeRestObject;
48 import org.onap.portal.scheduler.wrapper.GetTimeSlotsWrapper;
49 import org.onap.portal.scheduler.wrapper.PostCreateNewVnfWrapper;
50 import org.onap.portal.scheduler.wrapper.PostSubmitVnfChangeTimeSlotsWrapper;
51 import org.onap.portal.utils.DateUtil;
52 import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
53
54 public class SchedulerUtil {
55
56     private static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(SchedulerUtil.class);
57
58     public static GetTimeSlotsWrapper getTimeSlotsWrapResponse(GetTimeSlotsRestObject<String> rs) {
59
60         String resp_str = "";
61         int status = 0;
62
63         if (rs != null) {
64             resp_str = rs.getT();
65             status = rs.getStatusCode();
66         }
67
68         GetTimeSlotsWrapper w = new GetTimeSlotsWrapper();
69
70         w.setEntity(resp_str);
71         w.setStatus(status);
72
73         return (w);
74     }
75
76     public static PostSubmitVnfChangeTimeSlotsWrapper postSubmitNewVnfWrapResponse(
77         PostSubmitVnfChangeRestObject<String> rs) {
78
79         String resp_str = "";
80         int status = 0;
81         String uuid = "";
82
83         if (rs != null) {
84             resp_str = rs.getT();
85             status = rs.getStatusCode();
86             uuid = rs.getUuid();
87         }
88
89         PostSubmitVnfChangeTimeSlotsWrapper w = new PostSubmitVnfChangeTimeSlotsWrapper();
90
91         w.setEntity(resp_str);
92         w.setStatus(status);
93         w.setUuid(uuid);
94
95         return (w);
96     }
97
98     public static PostCreateNewVnfWrapper postCreateNewVnfWrapResponse(PostCreateNewVnfRestObject<String> rs) {
99
100         String resp_str = "";
101         int status = 0;
102         String uuid = "";
103
104         if (rs != null) {
105             resp_str = rs.getT();
106             status = rs.getStatusCode();
107             uuid = rs.getUUID();
108         }
109
110         PostCreateNewVnfWrapper w = new PostCreateNewVnfWrapper();
111
112         w.setEntity(resp_str);
113         w.setStatus(status);
114         w.setUuid(uuid);
115
116         return (w);
117     }
118
119     public static <T> String convertPojoToString(T t) throws com.fasterxml.jackson.core.JsonProcessingException {
120
121         String methodName = "convertPojoToString";
122         ObjectMapper mapper = new ObjectMapper();
123         String r_json_str = "";
124         if (t != null) {
125             try {
126                 r_json_str = mapper.writeValueAsString(t);
127             } catch (com.fasterxml.jackson.core.JsonProcessingException j) {
128                 logger.debug(EELFLoggerDelegate.debugLogger,
129                     DateUtil.getDateFormat().format(new Date()) + "<== " + methodName + " Unable " + "to "
130                         + "parse object as json");
131             }
132         }
133         return (r_json_str);
134     }
135
136 }