diff options
author | Plummer, Brittany <brittany.plummer@att.com> | 2019-09-24 15:17:44 -0400 |
---|---|---|
committer | Benjamin, Max (mb388a) <mb388a@att.com> | 2019-09-24 15:17:44 -0400 |
commit | 216b136d37933f291b54dc4d80ecd3ab16024398 (patch) | |
tree | 2711c0dcc2a517f4ad5e89bfe1a0a067b05fb451 /common/src/main | |
parent | 96231b3365d378a86b71d93b8a7d64aef8be531c (diff) |
Added missing headers
Added missing headers to files
Issue-ID: SO-2365
Signed-off-by: Benjamin, Max (mb388a) <mb388a@att.com>
Change-Id: Ib3f7808d997e324da4ae57f40d4f7ba946721538
Diffstat (limited to 'common/src/main')
-rw-r--r-- | common/src/main/java/org/onap/so/logging/jaxrs/filter/SOMetricLogClientFilter.java | 20 | ||||
-rw-r--r-- | common/src/main/java/org/onap/so/logging/jaxrs/filter/SOSpringClientFilter.java | 23 |
2 files changed, 41 insertions, 2 deletions
diff --git a/common/src/main/java/org/onap/so/logging/jaxrs/filter/SOMetricLogClientFilter.java b/common/src/main/java/org/onap/so/logging/jaxrs/filter/SOMetricLogClientFilter.java index 22a8d0405a..3b6b5216e0 100644 --- a/common/src/main/java/org/onap/so/logging/jaxrs/filter/SOMetricLogClientFilter.java +++ b/common/src/main/java/org/onap/so/logging/jaxrs/filter/SOMetricLogClientFilter.java @@ -1,3 +1,23 @@ +/*- + * ============LICENSE_START======================================================= + * ONAP - SO + * ================================================================================ + * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved. + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============LICENSE_END========================================================= + */ + package org.onap.so.logging.jaxrs.filter; import javax.ws.rs.client.ClientRequestContext; diff --git a/common/src/main/java/org/onap/so/logging/jaxrs/filter/SOSpringClientFilter.java b/common/src/main/java/org/onap/so/logging/jaxrs/filter/SOSpringClientFilter.java index 23df408ca5..d8ce17a277 100644 --- a/common/src/main/java/org/onap/so/logging/jaxrs/filter/SOSpringClientFilter.java +++ b/common/src/main/java/org/onap/so/logging/jaxrs/filter/SOSpringClientFilter.java @@ -1,7 +1,27 @@ +/*- + * ============LICENSE_START======================================================= + * ONAP - SO + * ================================================================================ + * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved. + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============LICENSE_END========================================================= + */ + package org.onap.so.logging.jaxrs.filter; import java.io.IOException; -import java.nio.charset.Charset; +import java.util.UUID; import org.onap.logging.filter.spring.SpringClientFilter; import org.onap.logging.ref.slf4j.ONAPLogConstants; import org.onap.so.logger.MdcConstants; @@ -14,7 +34,6 @@ import org.springframework.http.HttpRequest; import org.springframework.http.client.ClientHttpRequestInterceptor; import org.springframework.http.client.ClientHttpResponse; import org.springframework.stereotype.Component; -import org.springframework.util.StreamUtils; @Component public class SOSpringClientFilter extends SpringClientFilter implements ClientHttpRequestInterceptor { |