re base code
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / view / MixinTarget.java
1 package org.openecomp.sdc.be.view;
2
3 import java.lang.annotation.*;
4
5 @Retention(RetentionPolicy.RUNTIME)
6 @Target(ElementType.TYPE)
7 @Inherited
8 public @interface MixinTarget {
9     /**
10      *
11      * @return the class which is the target for the mixin. (i.e the class to be serialized into a json response)
12      */
13     Class<?> target();
14
15 }