001package com.echothree.model.jooq.server.keys.carrier; 002 003import com.echothree.model.jooq.server.KeyRegistry; 004import com.echothree.model.jooq.server.records.carrier.CarrierOptionDescriptions; 005import com.echothree.model.jooq.server.records.carrier.CarrierOptionDetails; 006import com.echothree.model.jooq.server.records.carrier.CarrierOptions; 007import com.echothree.model.jooq.server.records.carrier.CarrierServiceDescriptions; 008import com.echothree.model.jooq.server.records.carrier.CarrierServiceDetails; 009import com.echothree.model.jooq.server.records.carrier.CarrierServiceOptions; 010import com.echothree.model.jooq.server.records.carrier.CarrierServices; 011import com.echothree.model.jooq.server.records.carrier.CarrierTypeDescriptions; 012import com.echothree.model.jooq.server.records.carrier.CarrierTypeDetails; 013import com.echothree.model.jooq.server.records.carrier.CarrierTypes; 014import com.echothree.model.jooq.server.records.carrier.Carriers; 015import com.echothree.model.jooq.server.records.carrier.PartyCarrierAccountDetails; 016import com.echothree.model.jooq.server.records.carrier.PartyCarrierAccounts; 017import com.echothree.model.jooq.server.records.carrier.PartyCarriers; 018import com.echothree.model.jooq.server.records.party.Languages; 019import com.echothree.model.jooq.server.records.party.Parties; 020import com.echothree.model.jooq.server.records.selector.Selectors; 021 022import org.jooq.ForeignKey; 023import org.jooq.TableField; 024import org.jooq.impl.DSL; 025import org.jooq.impl.Internal; 026import org.jooq.impl.QOM.ForeignKeyRule; 027 028/** 029 * Key definitions for the CarrierForeign component. 030 */ 031public interface CarrierForeignKeys { 032 public static final ForeignKey<CarrierOptionDescriptions, CarrierOptions> CARRIER_OPTION_DESCRIPTIONS_CARRIER_OPTION_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierOptionDescriptions.CarrierOptionDescriptions, DSL.name("crroptd_crropt_carrieroptionid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierOptionDescriptions.CarrierOptionDescriptions.CARRIER_OPTION }, KeyRegistry.CARRIER_OPTIONS_PK, new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierOptions.CarrierOptions.CARRIER_OPTION }, true, ForeignKeyRule.CASCADE, null); 033 public static final ForeignKey<CarrierOptionDescriptions, Languages> CARRIER_OPTION_DESCRIPTIONS_LANGUAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierOptionDescriptions.CarrierOptionDescriptions, DSL.name("crroptd_lang_languageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierOptionDescriptions.CarrierOptionDescriptions.LANGUAGE }, KeyRegistry.LANGUAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Languages.Languages.LANGUAGE }, true, ForeignKeyRule.CASCADE, null); 034 public static final ForeignKey<CarrierOptionDetails, Parties> CARRIER_OPTION_DETAILS_CARRIER_PARTY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails, DSL.name("crroptdt_carrierpartyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails.CARRIER_PARTY }, KeyRegistry.PARTIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Parties.Parties.PARTY }, true, ForeignKeyRule.CASCADE, null); 035 public static final ForeignKey<CarrierOptionDetails, CarrierOptions> CARRIER_OPTION_DETAILS_CARRIER_OPTION_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails, DSL.name("crroptdt_crropt_carrieroptionid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails.CARRIER_OPTION }, KeyRegistry.CARRIER_OPTIONS_PK, new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierOptions.CarrierOptions.CARRIER_OPTION }, true, ForeignKeyRule.CASCADE, null); 036 public static final ForeignKey<CarrierOptionDetails, Selectors> CARRIER_OPTION_DETAILS_RECOMMENDED_GEO_CODE_SELECTOR_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails, DSL.name("crroptdt_recommendedgeocodeselectorid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails.RECOMMENDED_GEO_CODE_SELECTOR }, KeyRegistry.SELECTORS_PK, new TableField[] { com.echothree.model.jooq.server.tables.selector.Selectors.Selectors.SELECTOR }, true, ForeignKeyRule.CASCADE, null); 037 public static final ForeignKey<CarrierOptionDetails, Selectors> CARRIER_OPTION_DETAILS_RECOMMENDED_ITEM_SELECTOR_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails, DSL.name("crroptdt_recommendeditemselectorid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails.RECOMMENDED_ITEM_SELECTOR }, KeyRegistry.SELECTORS_PK, new TableField[] { com.echothree.model.jooq.server.tables.selector.Selectors.Selectors.SELECTOR }, true, ForeignKeyRule.CASCADE, null); 038 public static final ForeignKey<CarrierOptionDetails, Selectors> CARRIER_OPTION_DETAILS_RECOMMENDED_ORDER_SELECTOR_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails, DSL.name("crroptdt_recommendedorderselectorid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails.RECOMMENDED_ORDER_SELECTOR }, KeyRegistry.SELECTORS_PK, new TableField[] { com.echothree.model.jooq.server.tables.selector.Selectors.Selectors.SELECTOR }, true, ForeignKeyRule.CASCADE, null); 039 public static final ForeignKey<CarrierOptionDetails, Selectors> CARRIER_OPTION_DETAILS_RECOMMENDED_SHIPMENT_SELECTOR_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails, DSL.name("crroptdt_recommendedshipmentselectorid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails.RECOMMENDED_SHIPMENT_SELECTOR }, KeyRegistry.SELECTORS_PK, new TableField[] { com.echothree.model.jooq.server.tables.selector.Selectors.Selectors.SELECTOR }, true, ForeignKeyRule.CASCADE, null); 040 public static final ForeignKey<CarrierOptionDetails, Selectors> CARRIER_OPTION_DETAILS_REQUIRED_GEO_CODE_SELECTOR_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails, DSL.name("crroptdt_requiredgeocodeselectorid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails.REQUIRED_GEO_CODE_SELECTOR }, KeyRegistry.SELECTORS_PK, new TableField[] { com.echothree.model.jooq.server.tables.selector.Selectors.Selectors.SELECTOR }, true, ForeignKeyRule.CASCADE, null); 041 public static final ForeignKey<CarrierOptionDetails, Selectors> CARRIER_OPTION_DETAILS_REQUIRED_ITEM_SELECTOR_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails, DSL.name("crroptdt_requireditemselectorid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails.REQUIRED_ITEM_SELECTOR }, KeyRegistry.SELECTORS_PK, new TableField[] { com.echothree.model.jooq.server.tables.selector.Selectors.Selectors.SELECTOR }, true, ForeignKeyRule.CASCADE, null); 042 public static final ForeignKey<CarrierOptionDetails, Selectors> CARRIER_OPTION_DETAILS_REQUIRED_ORDER_SELECTOR_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails, DSL.name("crroptdt_requiredorderselectorid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails.REQUIRED_ORDER_SELECTOR }, KeyRegistry.SELECTORS_PK, new TableField[] { com.echothree.model.jooq.server.tables.selector.Selectors.Selectors.SELECTOR }, true, ForeignKeyRule.CASCADE, null); 043 public static final ForeignKey<CarrierOptionDetails, Selectors> CARRIER_OPTION_DETAILS_REQUIRED_SHIPMENT_SELECTOR_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails, DSL.name("crroptdt_requiredshipmentselectorid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails.REQUIRED_SHIPMENT_SELECTOR }, KeyRegistry.SELECTORS_PK, new TableField[] { com.echothree.model.jooq.server.tables.selector.Selectors.Selectors.SELECTOR }, true, ForeignKeyRule.CASCADE, null); 044 public static final ForeignKey<CarrierOptions, CarrierOptionDetails> CARRIER_OPTIONS_ACTIVE_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierOptions.CarrierOptions, DSL.name("crropt_activedetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierOptions.CarrierOptions.ACTIVE_DETAIL }, KeyRegistry.CARRIER_OPTION_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails.CARRIER_OPTION_DETAIL }, true, ForeignKeyRule.CASCADE, null); 045 public static final ForeignKey<CarrierOptions, CarrierOptionDetails> CARRIER_OPTIONS_LAST_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierOptions.CarrierOptions, DSL.name("crropt_lastdetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierOptions.CarrierOptions.LAST_DETAIL }, KeyRegistry.CARRIER_OPTION_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails.CARRIER_OPTION_DETAIL }, true, ForeignKeyRule.CASCADE, null); 046 public static final ForeignKey<Carriers, CarrierTypes> CARRIERS_CARRIER_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.Carriers.Carriers, DSL.name("crr_crrtyp_carriertypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.Carriers.Carriers.CARRIER_TYPE }, KeyRegistry.CARRIER_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierTypes.CarrierTypes.CARRIER_TYPE }, true, ForeignKeyRule.CASCADE, null); 047 public static final ForeignKey<Carriers, Selectors> CARRIERS_GEO_CODE_SELECTOR_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.Carriers.Carriers, DSL.name("crr_geocodeselectorid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.Carriers.Carriers.GEO_CODE_SELECTOR }, KeyRegistry.SELECTORS_PK, new TableField[] { com.echothree.model.jooq.server.tables.selector.Selectors.Selectors.SELECTOR }, true, ForeignKeyRule.CASCADE, null); 048 public static final ForeignKey<Carriers, Selectors> CARRIERS_ITEM_SELECTOR_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.Carriers.Carriers, DSL.name("crr_itemselectorid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.Carriers.Carriers.ITEM_SELECTOR }, KeyRegistry.SELECTORS_PK, new TableField[] { com.echothree.model.jooq.server.tables.selector.Selectors.Selectors.SELECTOR }, true, ForeignKeyRule.CASCADE, null); 049 public static final ForeignKey<Carriers, Parties> CARRIERS_PARTY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.Carriers.Carriers, DSL.name("crr_par_partyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.Carriers.Carriers.PARTY }, KeyRegistry.PARTIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Parties.Parties.PARTY }, true, ForeignKeyRule.CASCADE, null); 050 public static final ForeignKey<CarrierServiceDescriptions, CarrierServices> CARRIER_SERVICE_DESCRIPTIONS_CARRIER_SERVICE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierServiceDescriptions.CarrierServiceDescriptions, DSL.name("crrsrvd_crrsrv_carrierserviceid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServiceDescriptions.CarrierServiceDescriptions.CARRIER_SERVICE }, KeyRegistry.CARRIER_SERVICES_PK, new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServices.CarrierServices.CARRIER_SERVICE }, true, ForeignKeyRule.CASCADE, null); 051 public static final ForeignKey<CarrierServiceDescriptions, Languages> CARRIER_SERVICE_DESCRIPTIONS_LANGUAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierServiceDescriptions.CarrierServiceDescriptions, DSL.name("crrsrvd_lang_languageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServiceDescriptions.CarrierServiceDescriptions.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<CarrierServiceDetails, Parties> CARRIER_SERVICE_DETAILS_CARRIER_PARTY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierServiceDetails.CarrierServiceDetails, DSL.name("crrsrvdt_carrierpartyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServiceDetails.CarrierServiceDetails.CARRIER_PARTY }, KeyRegistry.PARTIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Parties.Parties.PARTY }, true, ForeignKeyRule.CASCADE, null); 053 public static final ForeignKey<CarrierServiceDetails, CarrierServices> CARRIER_SERVICE_DETAILS_CARRIER_SERVICE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierServiceDetails.CarrierServiceDetails, DSL.name("crrsrvdt_crrsrv_carrierserviceid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServiceDetails.CarrierServiceDetails.CARRIER_SERVICE }, KeyRegistry.CARRIER_SERVICES_PK, new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServices.CarrierServices.CARRIER_SERVICE }, true, ForeignKeyRule.CASCADE, null); 054 public static final ForeignKey<CarrierServiceDetails, Selectors> CARRIER_SERVICE_DETAILS_GEO_CODE_SELECTOR_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierServiceDetails.CarrierServiceDetails, DSL.name("crrsrvdt_geocodeselectorid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServiceDetails.CarrierServiceDetails.GEO_CODE_SELECTOR }, KeyRegistry.SELECTORS_PK, new TableField[] { com.echothree.model.jooq.server.tables.selector.Selectors.Selectors.SELECTOR }, true, ForeignKeyRule.CASCADE, null); 055 public static final ForeignKey<CarrierServiceDetails, Selectors> CARRIER_SERVICE_DETAILS_ITEM_SELECTOR_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierServiceDetails.CarrierServiceDetails, DSL.name("crrsrvdt_itemselectorid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServiceDetails.CarrierServiceDetails.ITEM_SELECTOR }, KeyRegistry.SELECTORS_PK, new TableField[] { com.echothree.model.jooq.server.tables.selector.Selectors.Selectors.SELECTOR }, true, ForeignKeyRule.CASCADE, null); 056 public static final ForeignKey<CarrierServiceOptions, CarrierOptions> CARRIER_SERVICE_OPTIONS_CARRIER_OPTION_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierServiceOptions.CarrierServiceOptions, DSL.name("crrsrvopt_crropt_carrieroptionid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServiceOptions.CarrierServiceOptions.CARRIER_OPTION }, KeyRegistry.CARRIER_OPTIONS_PK, new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierOptions.CarrierOptions.CARRIER_OPTION }, true, ForeignKeyRule.CASCADE, null); 057 public static final ForeignKey<CarrierServiceOptions, CarrierServices> CARRIER_SERVICE_OPTIONS_CARRIER_SERVICE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierServiceOptions.CarrierServiceOptions, DSL.name("crrsrvopt_crrsrv_carrierserviceid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServiceOptions.CarrierServiceOptions.CARRIER_SERVICE }, KeyRegistry.CARRIER_SERVICES_PK, new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServices.CarrierServices.CARRIER_SERVICE }, true, ForeignKeyRule.CASCADE, null); 058 public static final ForeignKey<CarrierServiceOptions, Selectors> CARRIER_SERVICE_OPTIONS_RECOMMENDED_GEO_CODE_SELECTOR_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierServiceOptions.CarrierServiceOptions, DSL.name("crrsrvopt_recommendedgeocodeselectorid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServiceOptions.CarrierServiceOptions.RECOMMENDED_GEO_CODE_SELECTOR }, KeyRegistry.SELECTORS_PK, new TableField[] { com.echothree.model.jooq.server.tables.selector.Selectors.Selectors.SELECTOR }, true, ForeignKeyRule.CASCADE, null); 059 public static final ForeignKey<CarrierServiceOptions, Selectors> CARRIER_SERVICE_OPTIONS_RECOMMENDED_ITEM_SELECTOR_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierServiceOptions.CarrierServiceOptions, DSL.name("crrsrvopt_recommendeditemselectorid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServiceOptions.CarrierServiceOptions.RECOMMENDED_ITEM_SELECTOR }, KeyRegistry.SELECTORS_PK, new TableField[] { com.echothree.model.jooq.server.tables.selector.Selectors.Selectors.SELECTOR }, true, ForeignKeyRule.CASCADE, null); 060 public static final ForeignKey<CarrierServiceOptions, Selectors> CARRIER_SERVICE_OPTIONS_RECOMMENDED_ORDER_SELECTOR_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierServiceOptions.CarrierServiceOptions, DSL.name("crrsrvopt_recommendedorderselectorid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServiceOptions.CarrierServiceOptions.RECOMMENDED_ORDER_SELECTOR }, KeyRegistry.SELECTORS_PK, new TableField[] { com.echothree.model.jooq.server.tables.selector.Selectors.Selectors.SELECTOR }, true, ForeignKeyRule.CASCADE, null); 061 public static final ForeignKey<CarrierServiceOptions, Selectors> CARRIER_SERVICE_OPTIONS_RECOMMENDED_SHIPMENT_SELECTOR_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierServiceOptions.CarrierServiceOptions, DSL.name("crrsrvopt_recommendedshipmentselectorid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServiceOptions.CarrierServiceOptions.RECOMMENDED_SHIPMENT_SELECTOR }, KeyRegistry.SELECTORS_PK, new TableField[] { com.echothree.model.jooq.server.tables.selector.Selectors.Selectors.SELECTOR }, true, ForeignKeyRule.CASCADE, null); 062 public static final ForeignKey<CarrierServiceOptions, Selectors> CARRIER_SERVICE_OPTIONS_REQUIRED_GEO_CODE_SELECTOR_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierServiceOptions.CarrierServiceOptions, DSL.name("crrsrvopt_requiredgeocodeselectorid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServiceOptions.CarrierServiceOptions.REQUIRED_GEO_CODE_SELECTOR }, KeyRegistry.SELECTORS_PK, new TableField[] { com.echothree.model.jooq.server.tables.selector.Selectors.Selectors.SELECTOR }, true, ForeignKeyRule.CASCADE, null); 063 public static final ForeignKey<CarrierServiceOptions, Selectors> CARRIER_SERVICE_OPTIONS_REQUIRED_ITEM_SELECTOR_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierServiceOptions.CarrierServiceOptions, DSL.name("crrsrvopt_requireditemselectorid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServiceOptions.CarrierServiceOptions.REQUIRED_ITEM_SELECTOR }, KeyRegistry.SELECTORS_PK, new TableField[] { com.echothree.model.jooq.server.tables.selector.Selectors.Selectors.SELECTOR }, true, ForeignKeyRule.CASCADE, null); 064 public static final ForeignKey<CarrierServiceOptions, Selectors> CARRIER_SERVICE_OPTIONS_REQUIRED_ORDER_SELECTOR_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierServiceOptions.CarrierServiceOptions, DSL.name("crrsrvopt_requiredorderselectorid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServiceOptions.CarrierServiceOptions.REQUIRED_ORDER_SELECTOR }, KeyRegistry.SELECTORS_PK, new TableField[] { com.echothree.model.jooq.server.tables.selector.Selectors.Selectors.SELECTOR }, true, ForeignKeyRule.CASCADE, null); 065 public static final ForeignKey<CarrierServiceOptions, Selectors> CARRIER_SERVICE_OPTIONS_REQUIRED_SHIPMENT_SELECTOR_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierServiceOptions.CarrierServiceOptions, DSL.name("crrsrvopt_requiredshipmentselectorid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServiceOptions.CarrierServiceOptions.REQUIRED_SHIPMENT_SELECTOR }, KeyRegistry.SELECTORS_PK, new TableField[] { com.echothree.model.jooq.server.tables.selector.Selectors.Selectors.SELECTOR }, true, ForeignKeyRule.CASCADE, null); 066 public static final ForeignKey<CarrierServices, CarrierServiceDetails> CARRIER_SERVICES_ACTIVE_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierServices.CarrierServices, DSL.name("crrsrv_activedetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServices.CarrierServices.ACTIVE_DETAIL }, KeyRegistry.CARRIER_SERVICE_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServiceDetails.CarrierServiceDetails.CARRIER_SERVICE_DETAIL }, true, ForeignKeyRule.CASCADE, null); 067 public static final ForeignKey<CarrierServices, CarrierServiceDetails> CARRIER_SERVICES_LAST_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierServices.CarrierServices, DSL.name("crrsrv_lastdetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServices.CarrierServices.LAST_DETAIL }, KeyRegistry.CARRIER_SERVICE_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServiceDetails.CarrierServiceDetails.CARRIER_SERVICE_DETAIL }, true, ForeignKeyRule.CASCADE, null); 068 public static final ForeignKey<CarrierTypeDescriptions, CarrierTypes> CARRIER_TYPE_DESCRIPTIONS_CARRIER_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierTypeDescriptions.CarrierTypeDescriptions, DSL.name("crrtypd_crrtyp_carriertypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierTypeDescriptions.CarrierTypeDescriptions.CARRIER_TYPE }, KeyRegistry.CARRIER_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierTypes.CarrierTypes.CARRIER_TYPE }, true, ForeignKeyRule.CASCADE, null); 069 public static final ForeignKey<CarrierTypeDescriptions, Languages> CARRIER_TYPE_DESCRIPTIONS_LANGUAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierTypeDescriptions.CarrierTypeDescriptions, DSL.name("crrtypd_lang_languageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierTypeDescriptions.CarrierTypeDescriptions.LANGUAGE }, KeyRegistry.LANGUAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Languages.Languages.LANGUAGE }, true, ForeignKeyRule.CASCADE, null); 070 public static final ForeignKey<CarrierTypeDetails, CarrierTypes> CARRIER_TYPE_DETAILS_CARRIER_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierTypeDetails.CarrierTypeDetails, DSL.name("crrtypdt_crrtyp_carriertypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierTypeDetails.CarrierTypeDetails.CARRIER_TYPE }, KeyRegistry.CARRIER_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierTypes.CarrierTypes.CARRIER_TYPE }, true, ForeignKeyRule.CASCADE, null); 071 public static final ForeignKey<CarrierTypes, CarrierTypeDetails> CARRIER_TYPES_ACTIVE_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierTypes.CarrierTypes, DSL.name("crrtyp_activedetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierTypes.CarrierTypes.ACTIVE_DETAIL }, KeyRegistry.CARRIER_TYPE_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierTypeDetails.CarrierTypeDetails.CARRIER_TYPE_DETAIL }, true, ForeignKeyRule.CASCADE, null); 072 public static final ForeignKey<CarrierTypes, CarrierTypeDetails> CARRIER_TYPES_LAST_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.CarrierTypes.CarrierTypes, DSL.name("crrtyp_lastdetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierTypes.CarrierTypes.LAST_DETAIL }, KeyRegistry.CARRIER_TYPE_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierTypeDetails.CarrierTypeDetails.CARRIER_TYPE_DETAIL }, true, ForeignKeyRule.CASCADE, null); 073 public static final ForeignKey<PartyCarrierAccountDetails, Parties> PARTY_CARRIER_ACCOUNT_DETAILS_CARRIER_PARTY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.PartyCarrierAccountDetails.PartyCarrierAccountDetails, DSL.name("pcrractdt_carrierpartyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.PartyCarrierAccountDetails.PartyCarrierAccountDetails.CARRIER_PARTY }, KeyRegistry.PARTIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Parties.Parties.PARTY }, true, ForeignKeyRule.CASCADE, null); 074 public static final ForeignKey<PartyCarrierAccountDetails, Parties> PARTY_CARRIER_ACCOUNT_DETAILS_PARTY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.PartyCarrierAccountDetails.PartyCarrierAccountDetails, DSL.name("pcrractdt_par_partyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.PartyCarrierAccountDetails.PartyCarrierAccountDetails.PARTY }, KeyRegistry.PARTIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Parties.Parties.PARTY }, true, ForeignKeyRule.CASCADE, null); 075 public static final ForeignKey<PartyCarrierAccountDetails, PartyCarrierAccounts> PARTY_CARRIER_ACCOUNT_DETAILS_PARTY_CARRIER_ACCOUNT_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.PartyCarrierAccountDetails.PartyCarrierAccountDetails, DSL.name("pcrractdt_pcrract_partycarrieraccountid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.PartyCarrierAccountDetails.PartyCarrierAccountDetails.PARTY_CARRIER_ACCOUNT }, KeyRegistry.PARTY_CARRIER_ACCOUNTS_PK, new TableField[] { com.echothree.model.jooq.server.tables.carrier.PartyCarrierAccounts.PartyCarrierAccounts.PARTY_CARRIER_ACCOUNT }, true, ForeignKeyRule.CASCADE, null); 076 public static final ForeignKey<PartyCarrierAccounts, PartyCarrierAccountDetails> PARTY_CARRIER_ACCOUNTS_ACTIVE_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.PartyCarrierAccounts.PartyCarrierAccounts, DSL.name("pcrract_activedetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.PartyCarrierAccounts.PartyCarrierAccounts.ACTIVE_DETAIL }, KeyRegistry.PARTY_CARRIER_ACCOUNT_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.carrier.PartyCarrierAccountDetails.PartyCarrierAccountDetails.PARTY_CARRIER_ACCOUNT_DETAIL }, true, ForeignKeyRule.CASCADE, null); 077 public static final ForeignKey<PartyCarrierAccounts, PartyCarrierAccountDetails> PARTY_CARRIER_ACCOUNTS_LAST_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.PartyCarrierAccounts.PartyCarrierAccounts, DSL.name("pcrract_lastdetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.PartyCarrierAccounts.PartyCarrierAccounts.LAST_DETAIL }, KeyRegistry.PARTY_CARRIER_ACCOUNT_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.carrier.PartyCarrierAccountDetails.PartyCarrierAccountDetails.PARTY_CARRIER_ACCOUNT_DETAIL }, true, ForeignKeyRule.CASCADE, null); 078 public static final ForeignKey<PartyCarriers, Parties> PARTY_CARRIERS_CARRIER_PARTY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.PartyCarriers.PartyCarriers, DSL.name("pcrr_carrierpartyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.PartyCarriers.PartyCarriers.CARRIER_PARTY }, KeyRegistry.PARTIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Parties.Parties.PARTY }, true, ForeignKeyRule.CASCADE, null); 079 public static final ForeignKey<PartyCarriers, Parties> PARTY_CARRIERS_PARTY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.carrier.PartyCarriers.PartyCarriers, DSL.name("pcrr_par_partyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.PartyCarriers.PartyCarriers.PARTY }, KeyRegistry.PARTIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Parties.Parties.PARTY }, true, ForeignKeyRule.CASCADE, null); 080}