Fix typo in package names
[aaf/cadi.git] / sidecar / rproxy / src / main / java / org / onap / aaf / cadi / sidecar / rproxy / logging / ReverseProxyMethodLogTime.java
@@ -17,7 +17,7 @@
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
-package org.onap.aaf.cadi.sidecar.rpoxy.logging;
+package org.onap.aaf.cadi.sidecar.rproxy.logging;
 
 import org.aspectj.lang.ProceedingJoinPoint;
 import org.aspectj.lang.annotation.Around;
@@ -32,7 +32,7 @@ public class ReverseProxyMethodLogTime {
 
     private static final Logger LOGGER = LoggerFactory.getLogger(ReverseProxyMethodLogTime.class);
 
-    @Around("@annotation(org.onap.aaf.rproxy.logging.ReverseProxyMethodLogTimeAnnotation)")
+    @Around("@annotation(org.onap.aaf.cadi.sidecar.rproxy.logging.ReverseProxyMethodLogTimeAnnotation)")
     public Object around(ProceedingJoinPoint joinPoint) throws Throwable {
 
         long startTime = System.currentTimeMillis();