package com.vci.common.annotaion; import static java.lang.annotation.ElementType.METHOD; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Retention(RetentionPolicy.RUNTIME) @Target({METHOD}) public @interface MethodTypeAnnotation { public String getMethodType() default ""; }