Annotation Type SBA



  • @Documented
    @Target(METHOD)
    @Retention(RUNTIME)
    public @interface SBA
    Indicate that annotated method is used as D2000 SBA.

    Annotated method is required to have exactly one parameter of byte[] type. Return type is required to be byte[] in case of synchronous SBA or void in case of asynchronous SBA respectively.

    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      java.lang.String name
      Indicate formal name of SBA.
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      boolean asynchronous
      Indicate that SBA is either synchronous or asynchronous.
    • Element Detail

      • name

        java.lang.String name
        Indicate formal name of SBA.
        Returns:
        formal name of the SBA
      • asynchronous

        boolean asynchronous
        Indicate that SBA is either synchronous or asynchronous.
        Returns:
        true if the SBA is asynchronous
        Default:
        false