Annotation Type AgentResult


  • @Target(FIELD)
    @Retention(RUNTIME)
    public @interface AgentResult
    Marker for agent result field.
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      java.lang.String convert
      The result conversion expression.
      java.lang.String convertback
      The result conversion expression.
      java.lang.String value
      The result name.
    • Element Detail

      • value

        java.lang.String value
        The result name. Is optional. If not set the field name must correspond to the result name.
        Default:
        ""
      • convert

        java.lang.String convert
        The result conversion expression. The coversion expression is used to convert a default value. $value refers to the field value. Is optional.
        Default:
        ""
      • convertback

        java.lang.String convertback
        The result conversion expression. The coversion expression is used to convert a result value before saving $value refers to the field value. Is optional.
        Default:
        ""