blob: 29fd10938a142a2f78f16a3178c579a444e7118d [file] [log] [blame]
Aharoni, Pavel (pa0916)ca3cb012018-10-22 15:29:57 +03001/*-
2 * ============LICENSE_START=======================================================
3 * OSAM
4 * ================================================================================
5 * Copyright (C) 2018 AT&T
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
22
23package org.onap.osam.policy;
24
25import com.fasterxml.jackson.databind.ObjectMapper;
26import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
27import org.onap.osam.policy.rest.RequestDetails;
28
29import java.text.DateFormat;
30import java.text.SimpleDateFormat;
31import java.util.Date;
32
33public class PolicyRestInt {
34
35 private static final EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(PolicyRestInt.class);
36
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}