aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/java/org/openecomp/sdc/be/view/ResponseView.java
blob: 16733ed0190181ca255ff55837c0c08dba3f5670 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.openecomp.sdc.be.view;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface ResponseView {
    /**
     * The mixins that will be used when converting the resource's response into a specific view of that response.
     * A number of mixins can be declared, each of which corresponds to a different object.
     */
    public Class<? extends Mixin>[] mixin();
}