All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.rx.annotation.Metadata Maven / Gradle / Ivy

package org.rx.annotation;

import java.lang.annotation.*;

import static java.lang.annotation.ElementType.*;

@Target({TYPE, CONSTRUCTOR, METHOD, PARAMETER, FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Metadata {
    String value() default "";

    boolean ignore() default false;

    String topic() default "";

    Class topicClass() default Object.class;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy