Annotation Type CleanupTableInfo


@Retention(RUNTIME) @Target(TYPE) @Inherited @Evolving public @interface CleanupTableInfo
Annotation to provide information about clean up table information for OMClientResponse.
  • Optional Element Summary

    Optional Elements
    Modifier and Type
    Optional Element
    Description
    boolean
    If all tables are affected, like at update finalization, one can specify cleanupAll=true, instead of the list of all tables.
    Array of tables affected by this operation.
  • Element Details

    • cleanupTables

      String[] cleanupTables
      Array of tables affected by this operation. This information will be used during cleanup table cache.
      Returns:
      list of table names.
      Default:
      {}
    • cleanupAll

      boolean cleanupAll
      If all tables are affected, like at update finalization, one can specify cleanupAll=true, instead of the list of all tables. In this case the cleanupTable property has to be defined as an empty array (the default).
      Returns:
      whether to cleanup all tables.
      Default:
      false