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

org.jgroups.annotations.ManagedOperation Maven / Gradle / Ivy

There is a newer version: 5.3.13.Final
Show newest version
package org.jgroups.annotations;

import java.lang.annotation.*;

/**
 * Indicates that a method in an MBean class defines an MBean 
 * operation. @ManagedOperation annotation can be applied to a 
 * public method of a public class that is itself optionally 
 * annotated with an @MBean annotation, or inherits such an 
 * annotation from a superclass.
 * 
 * @author Chris Mills
 */


@Retention(RetentionPolicy.RUNTIME)
@Target( { ElementType.METHOD })
public @interface ManagedOperation {
    String description() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy