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

brooklyn.entity.annotation.Effector Maven / Gradle / Ivy

There is a newer version: 0.7.0-M1
Show newest version
package brooklyn.entity.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Marks a method as being an effector. Provides runtime to meta-data about that effector.
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.PARAMETER, ElementType.METHOD})
public @interface Effector {
    String description() default "";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy