Annotation Interface Audited.CollectionTable

Enclosing class:
Audited

@Documented @Retention(RUNTIME) @Target({FIELD,METHOD}) public static @interface Audited.CollectionTable
Specifies a custom audit table name (and optionally schema and catalog) for an audited collection. Placed on the collection field or property.
Since:
7.4
  • Required Element Summary

    Required Elements
    Modifier and Type
    Required Element
    Description
    The name of the collection audit table.
  • Optional Element Summary

    Optional Elements
    Modifier and Type
    Optional Element
    Description
    The catalog of the collection audit table.
    The schema of the collection audit table.
  • Element Details

    • name

      String name
      The name of the collection audit table.
    • schema

      String schema
      The schema of the collection audit table. Defaults to the schema of the owning entity's audit table.
      Default:
      ""
    • catalog

      String catalog
      The catalog of the collection audit table. Defaults to the catalog of the owning entity's audit table.
      Default:
      ""