001package com.echothree.model.jooq.server.keys.carrier; 002 003import com.echothree.model.jooq.server.records.carrier.CarrierOptionDescriptions; 004import com.echothree.model.jooq.server.records.carrier.CarrierOptionDetails; 005import com.echothree.model.jooq.server.records.carrier.CarrierOptions; 006import com.echothree.model.jooq.server.records.carrier.CarrierServiceDescriptions; 007import com.echothree.model.jooq.server.records.carrier.CarrierServiceDetails; 008import com.echothree.model.jooq.server.records.carrier.CarrierServiceOptions; 009import com.echothree.model.jooq.server.records.carrier.CarrierServices; 010import com.echothree.model.jooq.server.records.carrier.CarrierTypeDescriptions; 011import com.echothree.model.jooq.server.records.carrier.CarrierTypeDetails; 012import com.echothree.model.jooq.server.records.carrier.CarrierTypes; 013import com.echothree.model.jooq.server.records.carrier.Carriers; 014import com.echothree.model.jooq.server.records.carrier.PartyCarrierAccountDetails; 015import com.echothree.model.jooq.server.records.carrier.PartyCarrierAccounts; 016import com.echothree.model.jooq.server.records.carrier.PartyCarriers; 017 018import org.jooq.TableField; 019import org.jooq.UniqueKey; 020import org.jooq.impl.DSL; 021import org.jooq.impl.Internal; 022 023/** 024 * Key definitions for the CarrierUnique component. 025 */ 026public interface CarrierUniqueKeys { 027 public static final UniqueKey<CarrierOptionDescriptions> CARRIER_OPTION_DESCRIPTIONS_CARRIER_OPTION_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.CarrierOptionDescriptions.CarrierOptionDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierOptionDescriptions.CarrierOptionDescriptions.CARRIER_OPTION, com.echothree.model.jooq.server.tables.carrier.CarrierOptionDescriptions.CarrierOptionDescriptions.LANGUAGE, com.echothree.model.jooq.server.tables.carrier.CarrierOptionDescriptions.CarrierOptionDescriptions.THRU_TIME }, true); 028 public static final UniqueKey<CarrierOptionDescriptions> CARRIER_OPTION_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.CarrierOptionDescriptions.CarrierOptionDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierOptionDescriptions.CarrierOptionDescriptions.CARRIER_OPTION_DESCRIPTION }, true); 029 public static final UniqueKey<CarrierOptionDetails> CARRIER_OPTION_DETAILS_CARRIER_OPTION_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails.CARRIER_OPTION, com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails.THRU_TIME }, true); 030 public static final UniqueKey<CarrierOptionDetails> CARRIER_OPTION_DETAILS_CARRIER_PARTY_AND_CARRIER_OPTION_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails.CARRIER_PARTY, com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails.CARRIER_OPTION_NAME, com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails.THRU_TIME }, true); 031 public static final UniqueKey<CarrierOptionDetails> CARRIER_OPTION_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierOptionDetails.CarrierOptionDetails.CARRIER_OPTION_DETAIL }, true); 032 public static final UniqueKey<CarrierOptions> CARRIER_OPTIONS_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.CarrierOptions.CarrierOptions, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierOptions.CarrierOptions.ACTIVE_DETAIL }, true); 033 public static final UniqueKey<CarrierOptions> CARRIER_OPTIONS_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.CarrierOptions.CarrierOptions, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierOptions.CarrierOptions.LAST_DETAIL }, true); 034 public static final UniqueKey<CarrierOptions> CARRIER_OPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.CarrierOptions.CarrierOptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierOptions.CarrierOptions.CARRIER_OPTION }, true); 035 public static final UniqueKey<Carriers> CARRIERS_PARTY_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.Carriers.Carriers, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.Carriers.Carriers.PARTY, com.echothree.model.jooq.server.tables.carrier.Carriers.Carriers.THRU_TIME }, true); 036 public static final UniqueKey<Carriers> CARRIERS_CARRIER_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.Carriers.Carriers, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.Carriers.Carriers.CARRIER_NAME, com.echothree.model.jooq.server.tables.carrier.Carriers.Carriers.THRU_TIME }, true); 037 public static final UniqueKey<Carriers> CARRIERS_CARRIER_TYPE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.Carriers.Carriers, DSL.name("index3_idx"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.Carriers.Carriers.CARRIER_TYPE, com.echothree.model.jooq.server.tables.carrier.Carriers.Carriers.THRU_TIME }, true); 038 public static final UniqueKey<Carriers> CARRIERS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.Carriers.Carriers, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.Carriers.Carriers.CARRIER }, true); 039 public static final UniqueKey<CarrierServiceDescriptions> CARRIER_SERVICE_DESCRIPTIONS_CARRIER_SERVICE_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.CarrierServiceDescriptions.CarrierServiceDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServiceDescriptions.CarrierServiceDescriptions.CARRIER_SERVICE, com.echothree.model.jooq.server.tables.carrier.CarrierServiceDescriptions.CarrierServiceDescriptions.LANGUAGE, com.echothree.model.jooq.server.tables.carrier.CarrierServiceDescriptions.CarrierServiceDescriptions.THRU_TIME }, true); 040 public static final UniqueKey<CarrierServiceDescriptions> CARRIER_SERVICE_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.CarrierServiceDescriptions.CarrierServiceDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServiceDescriptions.CarrierServiceDescriptions.CARRIER_SERVICE_DESCRIPTION }, true); 041 public static final UniqueKey<CarrierServiceDetails> CARRIER_SERVICE_DETAILS_CARRIER_SERVICE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.CarrierServiceDetails.CarrierServiceDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServiceDetails.CarrierServiceDetails.CARRIER_SERVICE, com.echothree.model.jooq.server.tables.carrier.CarrierServiceDetails.CarrierServiceDetails.THRU_TIME }, true); 042 public static final UniqueKey<CarrierServiceDetails> CARRIER_SERVICE_DETAILS_CARRIER_PARTY_AND_CARRIER_SERVICE_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.CarrierServiceDetails.CarrierServiceDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServiceDetails.CarrierServiceDetails.CARRIER_PARTY, com.echothree.model.jooq.server.tables.carrier.CarrierServiceDetails.CarrierServiceDetails.CARRIER_SERVICE_NAME, com.echothree.model.jooq.server.tables.carrier.CarrierServiceDetails.CarrierServiceDetails.THRU_TIME }, true); 043 public static final UniqueKey<CarrierServiceDetails> CARRIER_SERVICE_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.CarrierServiceDetails.CarrierServiceDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServiceDetails.CarrierServiceDetails.CARRIER_SERVICE_DETAIL }, true); 044 public static final UniqueKey<CarrierServiceOptions> CARRIER_SERVICE_OPTIONS_CARRIER_SERVICE_AND_CARRIER_OPTION_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.CarrierServiceOptions.CarrierServiceOptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServiceOptions.CarrierServiceOptions.CARRIER_SERVICE, com.echothree.model.jooq.server.tables.carrier.CarrierServiceOptions.CarrierServiceOptions.CARRIER_OPTION, com.echothree.model.jooq.server.tables.carrier.CarrierServiceOptions.CarrierServiceOptions.THRU_TIME }, true); 045 public static final UniqueKey<CarrierServiceOptions> CARRIER_SERVICE_OPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.CarrierServiceOptions.CarrierServiceOptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServiceOptions.CarrierServiceOptions.CARRIER_SERVICE_OPTION }, true); 046 public static final UniqueKey<CarrierServices> CARRIER_SERVICES_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.CarrierServices.CarrierServices, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServices.CarrierServices.ACTIVE_DETAIL }, true); 047 public static final UniqueKey<CarrierServices> CARRIER_SERVICES_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.CarrierServices.CarrierServices, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServices.CarrierServices.LAST_DETAIL }, true); 048 public static final UniqueKey<CarrierServices> CARRIER_SERVICES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.CarrierServices.CarrierServices, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierServices.CarrierServices.CARRIER_SERVICE }, true); 049 public static final UniqueKey<CarrierTypeDescriptions> CARRIER_TYPE_DESCRIPTIONS_CARRIER_TYPE_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.CarrierTypeDescriptions.CarrierTypeDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierTypeDescriptions.CarrierTypeDescriptions.CARRIER_TYPE, com.echothree.model.jooq.server.tables.carrier.CarrierTypeDescriptions.CarrierTypeDescriptions.LANGUAGE, com.echothree.model.jooq.server.tables.carrier.CarrierTypeDescriptions.CarrierTypeDescriptions.THRU_TIME }, true); 050 public static final UniqueKey<CarrierTypeDescriptions> CARRIER_TYPE_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.CarrierTypeDescriptions.CarrierTypeDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierTypeDescriptions.CarrierTypeDescriptions.CARRIER_TYPE_DESCRIPTION }, true); 051 public static final UniqueKey<CarrierTypeDetails> CARRIER_TYPE_DETAILS_CARRIER_TYPE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.CarrierTypeDetails.CarrierTypeDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierTypeDetails.CarrierTypeDetails.CARRIER_TYPE, com.echothree.model.jooq.server.tables.carrier.CarrierTypeDetails.CarrierTypeDetails.THRU_TIME }, true); 052 public static final UniqueKey<CarrierTypeDetails> CARRIER_TYPE_DETAILS_CARRIER_TYPE_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.CarrierTypeDetails.CarrierTypeDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierTypeDetails.CarrierTypeDetails.CARRIER_TYPE_NAME, com.echothree.model.jooq.server.tables.carrier.CarrierTypeDetails.CarrierTypeDetails.THRU_TIME }, true); 053 public static final UniqueKey<CarrierTypeDetails> CARRIER_TYPE_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.CarrierTypeDetails.CarrierTypeDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierTypeDetails.CarrierTypeDetails.CARRIER_TYPE_DETAIL }, true); 054 public static final UniqueKey<CarrierTypes> CARRIER_TYPES_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.CarrierTypes.CarrierTypes, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierTypes.CarrierTypes.ACTIVE_DETAIL }, true); 055 public static final UniqueKey<CarrierTypes> CARRIER_TYPES_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.CarrierTypes.CarrierTypes, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierTypes.CarrierTypes.LAST_DETAIL }, true); 056 public static final UniqueKey<CarrierTypes> CARRIER_TYPES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.CarrierTypes.CarrierTypes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.CarrierTypes.CarrierTypes.CARRIER_TYPE }, true); 057 public static final UniqueKey<PartyCarrierAccountDetails> PARTY_CARRIER_ACCOUNT_DETAILS_PARTY_CARRIER_ACCOUNT_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.PartyCarrierAccountDetails.PartyCarrierAccountDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.PartyCarrierAccountDetails.PartyCarrierAccountDetails.PARTY_CARRIER_ACCOUNT, com.echothree.model.jooq.server.tables.carrier.PartyCarrierAccountDetails.PartyCarrierAccountDetails.THRU_TIME }, true); 058 public static final UniqueKey<PartyCarrierAccountDetails> PARTY_CARRIER_ACCOUNT_DETAILS_PARTY_AND_CARRIER_PARTY_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.PartyCarrierAccountDetails.PartyCarrierAccountDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.PartyCarrierAccountDetails.PartyCarrierAccountDetails.PARTY, com.echothree.model.jooq.server.tables.carrier.PartyCarrierAccountDetails.PartyCarrierAccountDetails.CARRIER_PARTY, com.echothree.model.jooq.server.tables.carrier.PartyCarrierAccountDetails.PartyCarrierAccountDetails.THRU_TIME }, true); 059 public static final UniqueKey<PartyCarrierAccountDetails> PARTY_CARRIER_ACCOUNT_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.PartyCarrierAccountDetails.PartyCarrierAccountDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.PartyCarrierAccountDetails.PartyCarrierAccountDetails.PARTY_CARRIER_ACCOUNT_DETAIL }, true); 060 public static final UniqueKey<PartyCarrierAccounts> PARTY_CARRIER_ACCOUNTS_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.PartyCarrierAccounts.PartyCarrierAccounts, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.PartyCarrierAccounts.PartyCarrierAccounts.ACTIVE_DETAIL }, true); 061 public static final UniqueKey<PartyCarrierAccounts> PARTY_CARRIER_ACCOUNTS_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.PartyCarrierAccounts.PartyCarrierAccounts, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.PartyCarrierAccounts.PartyCarrierAccounts.LAST_DETAIL }, true); 062 public static final UniqueKey<PartyCarrierAccounts> PARTY_CARRIER_ACCOUNTS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.PartyCarrierAccounts.PartyCarrierAccounts, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.PartyCarrierAccounts.PartyCarrierAccounts.PARTY_CARRIER_ACCOUNT }, true); 063 public static final UniqueKey<PartyCarriers> PARTY_CARRIERS_PARTY_AND_CARRIER_PARTY_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.PartyCarriers.PartyCarriers, DSL.name("partyid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.PartyCarriers.PartyCarriers.PARTY, com.echothree.model.jooq.server.tables.carrier.PartyCarriers.PartyCarriers.CARRIER_PARTY, com.echothree.model.jooq.server.tables.carrier.PartyCarriers.PartyCarriers.THRU_TIME }, true); 064 public static final UniqueKey<PartyCarriers> PARTY_CARRIERS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.carrier.PartyCarriers.PartyCarriers, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.carrier.PartyCarriers.PartyCarriers.PARTY_CARRIER }, true); 065}