Skip to content

Instantly share code, notes, and snippets.

@ljnelson
Created February 14, 2018 21:53
Embed
What would you like to do?
KubernetesEventSelector sketch
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import javax.inject.Qualifier;
@Documented
@Retention(value = RetentionPolicy.RUNTIME)
@Target({ ElementType.ANNOTATION_TYPE })
public @interface KubernetesEventSelector {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment