Class ReferentialConstraint

java.lang.Object
org.jooq.util.xml.jaxb.ReferentialConstraint
All Implemented Interfaces:
Serializable, XMLAppendable

public class ReferentialConstraint extends Object implements Serializable, XMLAppendable

Java class for ReferentialConstraint complex type.

The following schema fragment specifies the expected content contained within this class.

<complexType name="ReferentialConstraint">
  <complexContent>
    <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
      <all>
        <element name="constraint_catalog" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
        <element name="constraint_schema" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
        <element name="constraint_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
        <element name="unique_constraint_catalog" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
        <element name="unique_constraint_schema" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
        <element name="unique_constraint_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
        <element name="delete_rule" type="{http://www.jooq.org/xsd/jooq-meta-3.22.0.xsd}ForeignKeyRule" minOccurs="0"/>
        <element name="update_rule" type="{http://www.jooq.org/xsd/jooq-meta-3.22.0.xsd}ForeignKeyRule" minOccurs="0"/>
      </all>
    </restriction>
  </complexContent>
</complexType>
See Also:
  • Field Details

    • constraintCatalog

      protected String constraintCatalog
    • constraintSchema

      protected String constraintSchema
    • constraintName

      protected String constraintName
    • uniqueConstraintCatalog

      protected String uniqueConstraintCatalog
    • uniqueConstraintSchema

      protected String uniqueConstraintSchema
    • uniqueConstraintName

      protected String uniqueConstraintName
    • deleteRule

      protected ForeignKeyRule deleteRule
    • updateRule

      protected ForeignKeyRule updateRule
  • Constructor Details

    • ReferentialConstraint

      public ReferentialConstraint()
  • Method Details