The 2.0 DTD does not support to have an inverse attribute on an idbag.
<!ELEMENT idbag (
meta*,
(cache|jcs-cache)?,
collection-id,
key,
(element|many-to-many|composite-element|many-to-any)
)>
<!ATTLIST idbag name CDATA #REQUIRED>
<!ATTLIST idbag access CDATA #IMPLIED>
<!ATTLIST idbag table CDATA #IMPLIED> <!-- default: name -->
<!ATTLIST idbag schema CDATA #IMPLIED> <!-- default: none -->
<!ATTLIST idbag lazy (true|false) "false">
<!ATTLIST idbag cascade (none|all|save-update|delete|all-delete-orphan|delete-orphan) #IMPLIED> <!-- default: none -->
<!ATTLIST idbag order-by CDATA #IMPLIED> <!-- default: none -->
<!ATTLIST idbag where CDATA #IMPLIED> <!-- default: none -->
<!ATTLIST idbag batch-size CDATA "1">
<!ATTLIST idbag outer-join (true|false|auto) "auto">
<!ATTLIST idbag check CDATA #IMPLIED> <!-- default: none -->
Is it really unsupported? If yes, why is that so?
|