1 package com.atlassian.rest.annotation;
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 /**
9 * Collection of {@link com.atlassian.rest.annotation.ResponseType} annotations.
10 */
11 @Retention (RetentionPolicy.RUNTIME)
12 @Target ({ElementType.METHOD, ElementType.TYPE})
13 public @interface ResponseTypes
14 {
15 ResponseType[] value();
16 }