001package com.echothree.model.jooq.server.keys.cancellationpolicy; 002 003import com.echothree.model.jooq.server.KeyRegistry; 004import com.echothree.model.jooq.server.records.cancellationpolicy.CancellationKindDescriptions; 005import com.echothree.model.jooq.server.records.cancellationpolicy.CancellationKindDetails; 006import com.echothree.model.jooq.server.records.cancellationpolicy.CancellationKinds; 007import com.echothree.model.jooq.server.records.cancellationpolicy.CancellationPolicies; 008import com.echothree.model.jooq.server.records.cancellationpolicy.CancellationPolicyDetails; 009import com.echothree.model.jooq.server.records.cancellationpolicy.CancellationPolicyReasons; 010import com.echothree.model.jooq.server.records.cancellationpolicy.CancellationPolicyTranslations; 011import com.echothree.model.jooq.server.records.cancellationpolicy.CancellationReasonDescriptions; 012import com.echothree.model.jooq.server.records.cancellationpolicy.CancellationReasonDetails; 013import com.echothree.model.jooq.server.records.cancellationpolicy.CancellationReasonTypes; 014import com.echothree.model.jooq.server.records.cancellationpolicy.CancellationReasons; 015import com.echothree.model.jooq.server.records.cancellationpolicy.CancellationTypeDescriptions; 016import com.echothree.model.jooq.server.records.cancellationpolicy.CancellationTypeDetails; 017import com.echothree.model.jooq.server.records.cancellationpolicy.CancellationTypes; 018import com.echothree.model.jooq.server.records.cancellationpolicy.PartyCancellationPolicies; 019import com.echothree.model.jooq.server.records.core.MimeTypes; 020import com.echothree.model.jooq.server.records.party.Languages; 021import com.echothree.model.jooq.server.records.party.Parties; 022import com.echothree.model.jooq.server.records.sequence.SequenceTypes; 023import com.echothree.model.jooq.server.records.sequence.Sequences; 024 025import org.jooq.ForeignKey; 026import org.jooq.TableField; 027import org.jooq.impl.DSL; 028import org.jooq.impl.Internal; 029import org.jooq.impl.QOM.ForeignKeyRule; 030 031/** 032 * Key definitions for the CancellationPolicyForeign component. 033 */ 034public interface CancellationPolicyForeignKeys { 035 public static final ForeignKey<CancellationKindDescriptions, CancellationKinds> CANCELLATION_KIND_DESCRIPTIONS_CANCELLATION_KIND_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationKindDescriptions.CancellationKindDescriptions, DSL.name("cnclkd_cnclk_cancellationkindid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationKindDescriptions.CancellationKindDescriptions.CANCELLATION_KIND }, KeyRegistry.CANCELLATION_KINDS_PK, new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationKinds.CancellationKinds.CANCELLATION_KIND }, true, ForeignKeyRule.CASCADE, null); 036 public static final ForeignKey<CancellationKindDescriptions, Languages> CANCELLATION_KIND_DESCRIPTIONS_LANGUAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationKindDescriptions.CancellationKindDescriptions, DSL.name("cnclkd_lang_languageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationKindDescriptions.CancellationKindDescriptions.LANGUAGE }, KeyRegistry.LANGUAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Languages.Languages.LANGUAGE }, true, ForeignKeyRule.CASCADE, null); 037 public static final ForeignKey<CancellationKindDetails, SequenceTypes> CANCELLATION_KIND_DETAILS_CANCELLATION_SEQUENCE_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationKindDetails.CancellationKindDetails, DSL.name("cnclkdt_cancellationsequencetypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationKindDetails.CancellationKindDetails.CANCELLATION_SEQUENCE_TYPE }, KeyRegistry.SEQUENCE_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.sequence.SequenceTypes.SequenceTypes.SEQUENCE_TYPE }, true, ForeignKeyRule.CASCADE, null); 038 public static final ForeignKey<CancellationKindDetails, CancellationKinds> CANCELLATION_KIND_DETAILS_CANCELLATION_KIND_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationKindDetails.CancellationKindDetails, DSL.name("cnclkdt_cnclk_cancellationkindid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationKindDetails.CancellationKindDetails.CANCELLATION_KIND }, KeyRegistry.CANCELLATION_KINDS_PK, new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationKinds.CancellationKinds.CANCELLATION_KIND }, true, ForeignKeyRule.CASCADE, null); 039 public static final ForeignKey<CancellationKinds, CancellationKindDetails> CANCELLATION_KINDS_ACTIVE_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationKinds.CancellationKinds, DSL.name("cnclk_activedetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationKinds.CancellationKinds.ACTIVE_DETAIL }, KeyRegistry.CANCELLATION_KIND_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationKindDetails.CancellationKindDetails.CANCELLATION_KIND_DETAIL }, true, ForeignKeyRule.CASCADE, null); 040 public static final ForeignKey<CancellationKinds, CancellationKindDetails> CANCELLATION_KINDS_LAST_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationKinds.CancellationKinds, DSL.name("cnclk_lastdetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationKinds.CancellationKinds.LAST_DETAIL }, KeyRegistry.CANCELLATION_KIND_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationKindDetails.CancellationKindDetails.CANCELLATION_KIND_DETAIL }, true, ForeignKeyRule.CASCADE, null); 041 public static final ForeignKey<CancellationPolicies, CancellationPolicyDetails> CANCELLATION_POLICIES_ACTIVE_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationPolicies.CancellationPolicies, DSL.name("cnclplcy_activedetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationPolicies.CancellationPolicies.ACTIVE_DETAIL }, KeyRegistry.CANCELLATION_POLICY_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationPolicyDetails.CancellationPolicyDetails.CANCELLATION_POLICY_DETAIL }, true, ForeignKeyRule.CASCADE, null); 042 public static final ForeignKey<CancellationPolicies, CancellationPolicyDetails> CANCELLATION_POLICIES_LAST_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationPolicies.CancellationPolicies, DSL.name("cnclplcy_lastdetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationPolicies.CancellationPolicies.LAST_DETAIL }, KeyRegistry.CANCELLATION_POLICY_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationPolicyDetails.CancellationPolicyDetails.CANCELLATION_POLICY_DETAIL }, true, ForeignKeyRule.CASCADE, null); 043 public static final ForeignKey<CancellationPolicyDetails, CancellationKinds> CANCELLATION_POLICY_DETAILS_CANCELLATION_KIND_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationPolicyDetails.CancellationPolicyDetails, DSL.name("cnclplcydt_cnclk_cancellationkindid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationPolicyDetails.CancellationPolicyDetails.CANCELLATION_KIND }, KeyRegistry.CANCELLATION_KINDS_PK, new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationKinds.CancellationKinds.CANCELLATION_KIND }, true, ForeignKeyRule.CASCADE, null); 044 public static final ForeignKey<CancellationPolicyDetails, CancellationPolicies> CANCELLATION_POLICY_DETAILS_CANCELLATION_POLICY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationPolicyDetails.CancellationPolicyDetails, DSL.name("cnclplcydt_cnclplcy_cancellationpolicyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationPolicyDetails.CancellationPolicyDetails.CANCELLATION_POLICY }, KeyRegistry.CANCELLATION_POLICIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationPolicies.CancellationPolicies.CANCELLATION_POLICY }, true, ForeignKeyRule.CASCADE, null); 045 public static final ForeignKey<CancellationPolicyReasons, CancellationPolicies> CANCELLATION_POLICY_REASONS_CANCELLATION_POLICY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationPolicyReasons.CancellationPolicyReasons, DSL.name("cnclplcyrsn_cnclplcy_cancellationpolicyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationPolicyReasons.CancellationPolicyReasons.CANCELLATION_POLICY }, KeyRegistry.CANCELLATION_POLICIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationPolicies.CancellationPolicies.CANCELLATION_POLICY }, true, ForeignKeyRule.CASCADE, null); 046 public static final ForeignKey<CancellationPolicyReasons, CancellationReasons> CANCELLATION_POLICY_REASONS_CANCELLATION_REASON_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationPolicyReasons.CancellationPolicyReasons, DSL.name("cnclplcyrsn_cnclrsn_cancellationreasonid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationPolicyReasons.CancellationPolicyReasons.CANCELLATION_REASON }, KeyRegistry.CANCELLATION_REASONS_PK, new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationReasons.CancellationReasons.CANCELLATION_REASON }, true, ForeignKeyRule.CASCADE, null); 047 public static final ForeignKey<CancellationPolicyTranslations, CancellationPolicies> CANCELLATION_POLICY_TRANSLATIONS_CANCELLATION_POLICY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationPolicyTranslations.CancellationPolicyTranslations, DSL.name("cnclplcytr_cnclplcy_cancellationpolicyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationPolicyTranslations.CancellationPolicyTranslations.CANCELLATION_POLICY }, KeyRegistry.CANCELLATION_POLICIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationPolicies.CancellationPolicies.CANCELLATION_POLICY }, true, ForeignKeyRule.CASCADE, null); 048 public static final ForeignKey<CancellationPolicyTranslations, Languages> CANCELLATION_POLICY_TRANSLATIONS_LANGUAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationPolicyTranslations.CancellationPolicyTranslations, DSL.name("cnclplcytr_lang_languageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationPolicyTranslations.CancellationPolicyTranslations.LANGUAGE }, KeyRegistry.LANGUAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Languages.Languages.LANGUAGE }, true, ForeignKeyRule.CASCADE, null); 049 public static final ForeignKey<CancellationPolicyTranslations, MimeTypes> CANCELLATION_POLICY_TRANSLATIONS_POLICY_MIME_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationPolicyTranslations.CancellationPolicyTranslations, DSL.name("cnclplcytr_policymimetypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationPolicyTranslations.CancellationPolicyTranslations.POLICY_MIME_TYPE }, KeyRegistry.MIME_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.core.MimeTypes.MimeTypes.MIME_TYPE }, true, ForeignKeyRule.CASCADE, null); 050 public static final ForeignKey<CancellationReasonDescriptions, CancellationReasons> CANCELLATION_REASON_DESCRIPTIONS_CANCELLATION_REASON_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationReasonDescriptions.CancellationReasonDescriptions, DSL.name("cnclrsnd_cnclrsn_cancellationreasonid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationReasonDescriptions.CancellationReasonDescriptions.CANCELLATION_REASON }, KeyRegistry.CANCELLATION_REASONS_PK, new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationReasons.CancellationReasons.CANCELLATION_REASON }, true, ForeignKeyRule.CASCADE, null); 051 public static final ForeignKey<CancellationReasonDescriptions, Languages> CANCELLATION_REASON_DESCRIPTIONS_LANGUAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationReasonDescriptions.CancellationReasonDescriptions, DSL.name("cnclrsnd_lang_languageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationReasonDescriptions.CancellationReasonDescriptions.LANGUAGE }, KeyRegistry.LANGUAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Languages.Languages.LANGUAGE }, true, ForeignKeyRule.CASCADE, null); 052 public static final ForeignKey<CancellationReasonDetails, CancellationKinds> CANCELLATION_REASON_DETAILS_CANCELLATION_KIND_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationReasonDetails.CancellationReasonDetails, DSL.name("cnclrsndt_cnclk_cancellationkindid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationReasonDetails.CancellationReasonDetails.CANCELLATION_KIND }, KeyRegistry.CANCELLATION_KINDS_PK, new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationKinds.CancellationKinds.CANCELLATION_KIND }, true, ForeignKeyRule.CASCADE, null); 053 public static final ForeignKey<CancellationReasonDetails, CancellationReasons> CANCELLATION_REASON_DETAILS_CANCELLATION_REASON_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationReasonDetails.CancellationReasonDetails, DSL.name("cnclrsndt_cnclrsn_cancellationreasonid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationReasonDetails.CancellationReasonDetails.CANCELLATION_REASON }, KeyRegistry.CANCELLATION_REASONS_PK, new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationReasons.CancellationReasons.CANCELLATION_REASON }, true, ForeignKeyRule.CASCADE, null); 054 public static final ForeignKey<CancellationReasons, CancellationReasonDetails> CANCELLATION_REASONS_ACTIVE_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationReasons.CancellationReasons, DSL.name("cnclrsn_activedetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationReasons.CancellationReasons.ACTIVE_DETAIL }, KeyRegistry.CANCELLATION_REASON_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationReasonDetails.CancellationReasonDetails.CANCELLATION_REASON_DETAIL }, true, ForeignKeyRule.CASCADE, null); 055 public static final ForeignKey<CancellationReasons, CancellationReasonDetails> CANCELLATION_REASONS_LAST_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationReasons.CancellationReasons, DSL.name("cnclrsn_lastdetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationReasons.CancellationReasons.LAST_DETAIL }, KeyRegistry.CANCELLATION_REASON_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationReasonDetails.CancellationReasonDetails.CANCELLATION_REASON_DETAIL }, true, ForeignKeyRule.CASCADE, null); 056 public static final ForeignKey<CancellationReasonTypes, CancellationReasons> CANCELLATION_REASON_TYPES_CANCELLATION_REASON_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationReasonTypes.CancellationReasonTypes, DSL.name("cnclrsntyp_cnclrsn_cancellationreasonid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationReasonTypes.CancellationReasonTypes.CANCELLATION_REASON }, KeyRegistry.CANCELLATION_REASONS_PK, new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationReasons.CancellationReasons.CANCELLATION_REASON }, true, ForeignKeyRule.CASCADE, null); 057 public static final ForeignKey<CancellationReasonTypes, CancellationTypes> CANCELLATION_REASON_TYPES_CANCELLATION_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationReasonTypes.CancellationReasonTypes, DSL.name("cnclrsntyp_cncltyp_cancellationtypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationReasonTypes.CancellationReasonTypes.CANCELLATION_TYPE }, KeyRegistry.CANCELLATION_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationTypes.CancellationTypes.CANCELLATION_TYPE }, true, ForeignKeyRule.CASCADE, null); 058 public static final ForeignKey<CancellationTypeDescriptions, CancellationTypes> CANCELLATION_TYPE_DESCRIPTIONS_CANCELLATION_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationTypeDescriptions.CancellationTypeDescriptions, DSL.name("cncltypd_cncltyp_cancellationtypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationTypeDescriptions.CancellationTypeDescriptions.CANCELLATION_TYPE }, KeyRegistry.CANCELLATION_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationTypes.CancellationTypes.CANCELLATION_TYPE }, true, ForeignKeyRule.CASCADE, null); 059 public static final ForeignKey<CancellationTypeDescriptions, Languages> CANCELLATION_TYPE_DESCRIPTIONS_LANGUAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationTypeDescriptions.CancellationTypeDescriptions, DSL.name("cncltypd_lang_languageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationTypeDescriptions.CancellationTypeDescriptions.LANGUAGE }, KeyRegistry.LANGUAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Languages.Languages.LANGUAGE }, true, ForeignKeyRule.CASCADE, null); 060 public static final ForeignKey<CancellationTypeDetails, Sequences> CANCELLATION_TYPE_DETAILS_CANCELLATION_SEQUENCE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationTypeDetails.CancellationTypeDetails, DSL.name("cncltypdt_cancellationsequenceid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationTypeDetails.CancellationTypeDetails.CANCELLATION_SEQUENCE }, KeyRegistry.SEQUENCES_PK, new TableField[] { com.echothree.model.jooq.server.tables.sequence.Sequences.Sequences.SEQUENCE }, true, ForeignKeyRule.CASCADE, null); 061 public static final ForeignKey<CancellationTypeDetails, CancellationKinds> CANCELLATION_TYPE_DETAILS_CANCELLATION_KIND_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationTypeDetails.CancellationTypeDetails, DSL.name("cncltypdt_cnclk_cancellationkindid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationTypeDetails.CancellationTypeDetails.CANCELLATION_KIND }, KeyRegistry.CANCELLATION_KINDS_PK, new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationKinds.CancellationKinds.CANCELLATION_KIND }, true, ForeignKeyRule.CASCADE, null); 062 public static final ForeignKey<CancellationTypeDetails, CancellationTypes> CANCELLATION_TYPE_DETAILS_CANCELLATION_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationTypeDetails.CancellationTypeDetails, DSL.name("cncltypdt_cncltyp_cancellationtypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationTypeDetails.CancellationTypeDetails.CANCELLATION_TYPE }, KeyRegistry.CANCELLATION_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationTypes.CancellationTypes.CANCELLATION_TYPE }, true, ForeignKeyRule.CASCADE, null); 063 public static final ForeignKey<CancellationTypes, CancellationTypeDetails> CANCELLATION_TYPES_ACTIVE_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationTypes.CancellationTypes, DSL.name("cncltyp_activedetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationTypes.CancellationTypes.ACTIVE_DETAIL }, KeyRegistry.CANCELLATION_TYPE_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationTypeDetails.CancellationTypeDetails.CANCELLATION_TYPE_DETAIL }, true, ForeignKeyRule.CASCADE, null); 064 public static final ForeignKey<CancellationTypes, CancellationTypeDetails> CANCELLATION_TYPES_LAST_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationTypes.CancellationTypes, DSL.name("cncltyp_lastdetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationTypes.CancellationTypes.LAST_DETAIL }, KeyRegistry.CANCELLATION_TYPE_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationTypeDetails.CancellationTypeDetails.CANCELLATION_TYPE_DETAIL }, true, ForeignKeyRule.CASCADE, null); 065 public static final ForeignKey<PartyCancellationPolicies, CancellationPolicies> PARTY_CANCELLATION_POLICIES_CANCELLATION_POLICY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.PartyCancellationPolicies.PartyCancellationPolicies, DSL.name("pcnclplcy_cnclplcy_cancellationpolicyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.PartyCancellationPolicies.PartyCancellationPolicies.CANCELLATION_POLICY }, KeyRegistry.CANCELLATION_POLICIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.CancellationPolicies.CancellationPolicies.CANCELLATION_POLICY }, true, ForeignKeyRule.CASCADE, null); 066 public static final ForeignKey<PartyCancellationPolicies, Parties> PARTY_CANCELLATION_POLICIES_PARTY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.cancellationpolicy.PartyCancellationPolicies.PartyCancellationPolicies, DSL.name("pcnclplcy_par_partyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.cancellationpolicy.PartyCancellationPolicies.PartyCancellationPolicies.PARTY }, KeyRegistry.PARTIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Parties.Parties.PARTY }, true, ForeignKeyRule.CASCADE, null); 067}