List<Interceptor> fault = super.getOutFaultInterceptors();
fault.addAll(handlerInterceptors);
List<Interceptor> in = super.getInInterceptors();
in.addAll(handlerInterceptors);
in.add(new WrapperClassInInterceptor());
in.add(new HolderInInterceptor());
List<Interceptor> out = super.getOutInterceptors();
out.addAll(handlerInterceptors);
out.add(new WrapperClassOutInterceptor());
out.add(new HolderOutInterceptor());