Skip to content

Instantly share code, notes, and snippets.

@ljnelson
Created February 14, 2018 21:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ljnelson/c27a6af0f5a064707213bfef443ee971 to your computer and use it in GitHub Desktop.
Save ljnelson/c27a6af0f5a064707213bfef443ee971 to your computer and use it in GitHub Desktop.
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