org.onap migration
[vid.git] / vid-app-common / src / main / java / org / onap / vid / policy / PolicyRestInt.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.onap.vid.policy;
22
23 import com.fasterxml.jackson.databind.ObjectMapper;
24 import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate;
25 import org.onap.vid.policy.rest.RequestDetails;
26
27 import java.text.DateFormat;
28 import java.text.SimpleDateFormat;
29 import java.util.Date;
30
31 public class PolicyRestInt {
32         
33         /** The logger. */
34         private static final EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(PolicyRestInt.class);
35         
36         /** The Constant dateFormat. */
37         final static DateFormat dateFormat = new SimpleDateFormat("HH:mm:ss:SSSS");
38         
39         /** The request date format. */
40         public DateFormat requestDateFormat = new SimpleDateFormat("EEE, dd MMM YYYY HH:mm:ss z");
41         
42         public PolicyRestInt() {
43                 requestDateFormat.setTimeZone(java.util.TimeZone.getTimeZone("GMT"));
44         }
45
46         /**
47          * Log request.
48          *
49          * @param r the r
50          */
51         public void logRequest ( RequestDetails r ) {
52         String methodName = "logRequest";
53             ObjectMapper mapper = new ObjectMapper();
54             String r_json_str = "";
55             if ( r != null ) {
56                 r_json_str = r.toString();
57                     try {
58                         r_json_str = mapper.writeValueAsString(r);
59                     }
60                     catch ( com.fasterxml.jackson.core.JsonProcessingException j ) {
61                         logger.debug(EELFLoggerDelegate.debugLogger,dateFormat.format(new Date()) + "<== " +  methodName + " Unable to parse request as json");
62                     }
63             }
64             logger.debug(EELFLoggerDelegate.debugLogger,dateFormat.format(new Date()) + "<== " +  methodName + " Request=(" + r_json_str + ")");  
65     }
66 }