com.hubspot.rosetta.annotations.RosettaAnnotation Maven / Gradle / Ivy
package com.hubspot.rosetta.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Meta-annotation used for marking all annotations that are
* part of Rosetta package. Can be used for recognizing all
* Rosetta annotations generically, and in future also for
* passing other generic annotation configuration.
*/
@Target({ElementType.ANNOTATION_TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface RosettaAnnotation {}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy