Sync Integ to Master
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / view / ResponseView.java
1 package org.openecomp.sdc.be.view;
2
3 import java.lang.annotation.ElementType;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
6 import java.lang.annotation.Target;
7
8 @Retention(RetentionPolicy.RUNTIME)
9 @Target(ElementType.METHOD)
10 public @interface ResponseView {
11     /**
12      * The mixins that will be used when converting the resource's response into a specific view of that response.
13      * A number of mixins can be declared, each of which corresponds to a different object.
14      */
15     public Class<? extends Mixin>[] mixin();
16 }
17