[VID-3] Setting docker image tag
[vid.git] / vid / src / main / java / org / openecomp / vid / mso / MsoRestInt.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.vid.mso;
22
23 import java.text.DateFormat;
24 import java.text.SimpleDateFormat;
25 import java.util.Date;
26
27 import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate;
28 import com.fasterxml.jackson.databind.ObjectMapper;
29
30 /**
31  * The Class MsoRestInt.
32  */
33 public class MsoRestInt {
34         
35         /** The logger. */
36         EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(MsoRestInterface.class);
37         
38         /** The Constant dateFormat. */
39         final static DateFormat dateFormat = new SimpleDateFormat("HH:mm:ss:SSSS");
40         
41         /** The request date format. */
42         public DateFormat requestDateFormat = new SimpleDateFormat("EEE, dd MMM YYYY HH:mm:ss z");
43         
44         /**
45          * Instantiates a new mso rest int.
46          */
47         public MsoRestInt() {
48                 requestDateFormat.setTimeZone(java.util.TimeZone.getTimeZone("GMT"));
49         }
50         
51         /**
52          * Log request.
53          *
54          * @param r the r
55          */
56         public void logRequest ( org.openecomp.vid.mso.rest.RequestDetails r ) {
57         String methodName = "logRequest";
58             ObjectMapper mapper = new ObjectMapper();
59             String r_json_str = "";
60             if ( r != null ) {
61                 r_json_str = r.toString();
62                     try {
63                         r_json_str = mapper.writeValueAsString(r);
64                     }
65                     catch ( com.fasterxml.jackson.core.JsonProcessingException j ) {
66                         logger.debug(EELFLoggerDelegate.debugLogger,dateFormat.format(new Date()) + "<== " +  methodName + " Unable to parse request as json");
67                     }
68             }
69             logger.debug(EELFLoggerDelegate.debugLogger,dateFormat.format(new Date()) + "<== " +  methodName + " Request=(" + r_json_str + ")");  
70     }
71 }