Skip to content

Instantly share code, notes, and snippets.

@lazygarage
lazygarage / AwsExtension.java
Created April 15, 2016 13:50
CustomAnnotationExample
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import io.swagger.annotations.Extension;
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface AwsExtension {