Annotation Interface PairedParam


@Api @Retention(RUNTIME) @Target(PARAMETER) @Documented public @interface PairedParam
Component parameter annotation which pairs two array parameters. One parameter is a key and another is value in LinkedHashMap. Method parameter marked with @PairedParam must be type of LinkedHashMap.
Author:
RafaƂ Nowacki 2018-03-22
  • Required Element Summary

    Required Elements
    Modifier and Type
    Required Element
    Description
    Component parameter id, which will be key in a map.
    Component parameter id, which will be value in a map.
  • Element Details

    • key

      String key
      Component parameter id, which will be key in a map. Defaults to parameter name discovered from.
    • value

      String value
      Component parameter id, which will be value in a map.