Sync Integ to Master
[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.ElementType;
4 import java.lang.annotation.Inherited;
5 import java.lang.annotation.Retention;
6 import java.lang.annotation.RetentionPolicy;
7 import java.lang.annotation.Target;
8
9 @Retention(RetentionPolicy.RUNTIME)
10 @Target(ElementType.TYPE)
11 @Inherited
12 public @interface MixinTarget {
13     /**
14      *
15      * @return the class which is the target for the mixin. (i.e the class to be serialized into a json response)
16      */
17     Class<?> target();
18
19 }