Fix/Renable sidecar builds
[aaf/cadi.git] / sidecar / rproxy / src / main / java / org / onap / aaf / cadi / sidecar / rpoxy / logging / ReverseProxyEntryExitLoggingAspect.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aaf
4  * ================================================================================
5  * Copyright © 2018 European Software Marketing Ltd.
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 package org.onap.aaf.cadi.sidecar.rpoxy.logging;
21
22 import org.aspectj.lang.JoinPoint;
23 import org.aspectj.lang.annotation.After;
24 import org.aspectj.lang.annotation.Aspect;
25 import org.aspectj.lang.annotation.Before;
26 import org.slf4j.Logger;
27 import org.slf4j.LoggerFactory;
28 import org.springframework.stereotype.Component;
29
30 @Aspect
31 @Component
32 public class ReverseProxyEntryExitLoggingAspect {
33
34     private static final Logger LOGGER = LoggerFactory.getLogger(ReverseProxyEntryExitLoggingAspect.class);
35
36     @Before("execution(* org.onap.platform.security.*.*(..))")
37     public void before(JoinPoint joinPoint) {
38         LOGGER.info("Entry of {}#{}", joinPoint.getTarget().getClass(), joinPoint.getSignature().getName());
39     }
40
41     @After("execution(* org.onap.platform.security.*.*(..))")
42     public void after(JoinPoint joinPoint) {
43         LOGGER.info("Exit of {}#{}", joinPoint.getTarget().getClass(), joinPoint.getSignature().getName());
44     }
45 }