summaryrefslogtreecommitdiffstats
path: root/ms/gra/gra-app/src/main/java/org/onap/sdnc/apps/ms/gra/ObjectMapperInterceptor.java
blob: 0de0da67d281e3336df1926b99942ff0bd5af22b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.onap.sdnc.apps.ms.gra;

import com.fasterxml.jackson.databind.ObjectMapper;

import org.aopalliance.intercept.MethodInterceptor;
import org.aopalliance.intercept.MethodInvocation;
import org.springframework.util.ReflectionUtils;

public abstract class ObjectMapperInterceptor implements MethodInterceptor {

    @Override
    public Object invoke(MethodInvocation invocation) throws Throwable {
      return ReflectionUtils.invokeMethod(invocation.getMethod(), getObject(), invocation.getArguments());
    } 
  
    protected abstract ObjectMapper getObject();
  
}