@MinMuleVersion("4.1") @Target({PARAMETER,FIELD}) @Retention(RUNTIME) @Documented public @interface Placement
Defines the particular place of a Parameter field in the extension configuration window.
Since:
1.0
  • Optional Element Summary

    Optional Elements
    Modifier and Type
    Optional Element
    Description
    int
    Gives the annotated element a relative order within its group.
    A tab is a logical way to groups together.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    Tab name for parameters that are considered for advanced usage.
    static final String
    Tab name for parameters that are considered to be part of a connection configuration.
    static final int
    Parameter's default order.
    static final String
     
    static final String
     
    static final String
     
  • Field Details

  • Element Details

    • order

      int order
      Gives the annotated element a relative order within its group. The value provided may be repeated and in that case the order is not guaranteed.

      The value is relative meaning that the element with order 10 is on top than one with value 25.

      Default:
      -1
    • tab

      String tab
      A tab is a logical way to groups together. This attributes specifies the name of the tab in which the annotated element should be displayed. If no tab is specified then a default tab is assumed.

      To display more than one parameter or field in the same the tab then this value should be exactly the same for all of them.

      By default the value is DEFAULT_TAB

      Default:
      "General"