Merge "MicroserviceParameter class DB constraints"
[portal.git] / ecomp-portal-BE-common / src / main / java / org / onap / portalapp / portal / scheduler / SchedulerUtil.java
1 /*-
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright (C) 2017 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 package org.onap.portalapp.portal.scheduler;
41
42 import com.fasterxml.jackson.databind.ObjectMapper;
43 import org.onap.portalapp.portal.scheduler.restobjects.GetTimeSlotsRestObject;
44 import org.onap.portalapp.portal.scheduler.restobjects.PostCreateNewVnfRestObject;
45 import org.onap.portalapp.portal.scheduler.restobjects.PostSubmitVnfChangeRestObject;
46 import org.onap.portalapp.portal.scheduler.wrapper.GetTimeSlotsWrapper;
47 import org.onap.portalapp.portal.scheduler.wrapper.PostCreateNewVnfWrapper;
48 import org.onap.portalapp.portal.scheduler.wrapper.PostSubmitVnfChangeTimeSlotsWrapper;
49 import org.onap.portalapp.util.DateUtil;
50 import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
51
52 import java.util.Date;
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.get();
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 (PostSubmitVnfChangeRestObject<String> rs) {     
77                 
78                 String resp_str = "";
79                 int status = 0;
80                 String uuid = "";
81                 
82                 if ( rs != null ) {
83                         resp_str = rs.get();
84                         status = rs.getStatusCode();
85                         uuid = rs.getUUID();
86                 }
87                                 
88                 PostSubmitVnfChangeTimeSlotsWrapper w = new PostSubmitVnfChangeTimeSlotsWrapper();
89                 
90                 w.setEntity(resp_str);
91                 w.setStatus (status);
92                 w.setUuid(uuid);
93                 
94                 return (w);
95         }
96         
97         public static PostCreateNewVnfWrapper postCreateNewVnfWrapResponse (PostCreateNewVnfRestObject<String> rs) {    
98                 
99                 String resp_str = "";
100                 int status = 0;
101                 String uuid = "";
102                 
103                 if ( rs != null ) {
104                         resp_str = rs.get();
105                         status = rs.getStatusCode();
106                         uuid = rs.getUUID();
107                 }
108                                 
109                 PostCreateNewVnfWrapper w = new PostCreateNewVnfWrapper();
110                 
111                 w.setEntity(resp_str);
112                 w.setStatus (status);
113                 w.setUuid(uuid);
114                 
115                 return (w);
116         }
117         
118         public static <T> String convertPojoToString ( T t ) throws com.fasterxml.jackson.core.JsonProcessingException {
119                 
120                 String methodName = "convertPojoToString";
121                 ObjectMapper mapper = new ObjectMapper();
122                 String r_json_str = "";
123             if ( t != null ) {
124                     try {
125                         r_json_str = mapper.writeValueAsString(t);
126                     }
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 }