Annotation Type CometPreviewProcessingProperties


  • @Inherited
    @Documented
    @Retention(RUNTIME)
    @Target(METHOD)
    public @interface CometPreviewProcessingProperties

    The CometPreviewProcessingProperties annotation defines properties to set for preview statement processing when using the standard mapping.

    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      java.lang.String dataMappingMethod
      Name of a method to map results of a preview method call.
      java.lang.String dataMappingPlugin
      Mapped name of a Plugin to map results from a preview method call.
      java.lang.String dataProcessingMethod
      Name of a method to post process results of a preview method call.
      java.lang.String dataProcessingPlugin
      Mapped name of a Plugin to post process results of a preview method call.
      boolean usePlaceholderDataProcessing
      Use placeholder data processing for all results.
      • dataMappingMethod

        java.lang.String dataMappingMethod

        Name of a method to map results of a preview method call.

        This value can only be set in combination with dataMappingPlugin(). See dataMappingPlugin() for further information

        Returns:
        name of a method to post process preview method calls
        Default:
        ""
      • dataProcessingMethod

        java.lang.String dataProcessingMethod

        Name of a method to post process results of a preview method call.

        This value can only be set in combination with dataProcessingPlugin(). See dataProcessingPlugin() for further information

        Returns:
        name of a method to post process preview method calls
        Default:
        ""
      • usePlaceholderDataProcessing

        boolean usePlaceholderDataProcessing

        Use placeholder data processing for all results.

        If set to true and the statement is run from a placeholder context, all result data is processed using the same instructions like this placeholder.

        Returns:
        true, if placeholder data processing should be used, false otherwise
        Default:
        false