summaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/java/org/openecomp/sdc/be/view/MixinTarget.java
blob: 64f207f94a4e6fee223558c702ffff6169d58c07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.openecomp.sdc.be.view;

import java.lang.annotation.*;

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Inherited
public @interface MixinTarget {
    /**
     *
     * @return the class which is the target for the mixin. (i.e the class to be serialized into a json response)
     */
    Class<?> target();

}