Annotation Type JMXBeanParameter


  • @Documented
    @Retention(RUNTIME)
    public @interface JMXBeanParameter
    Annotation used to describe a JMX bean operation parameter. The annotated method parameter has to follow the JMX specification for operation parameters. All parameters of a method will be used for the operation, even if they are not annotated. Annotation of parameters is used only to further describe the parameter and set a more meaningful name.
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      java.lang.String description
      The description of this parameter, empty by default.
      java.lang.String name
      Name of this parameter, param1, param2, param3 etc. by default.
    • Element Detail

      • name

        java.lang.String name
        Name of this parameter, param1, param2, param3 etc. by default.
        Returns:
        The name of the parameter.
        Default:
        ""
      • description

        java.lang.String description
        The description of this parameter, empty by default.
        Returns:
        The parameter description.
        Default:
        ""