001package com.echothree.model.jooq.server.keys.workflow;
002
003import com.echothree.model.jooq.server.records.workflow.WorkflowDescriptions;
004import com.echothree.model.jooq.server.records.workflow.WorkflowDestinationDescriptions;
005import com.echothree.model.jooq.server.records.workflow.WorkflowDestinationDetails;
006import com.echothree.model.jooq.server.records.workflow.WorkflowDestinationPartyTypes;
007import com.echothree.model.jooq.server.records.workflow.WorkflowDestinationSecurityRoles;
008import com.echothree.model.jooq.server.records.workflow.WorkflowDestinationSelectors;
009import com.echothree.model.jooq.server.records.workflow.WorkflowDestinationSteps;
010import com.echothree.model.jooq.server.records.workflow.WorkflowDestinations;
011import com.echothree.model.jooq.server.records.workflow.WorkflowDetails;
012import com.echothree.model.jooq.server.records.workflow.WorkflowEntityStatuses;
013import com.echothree.model.jooq.server.records.workflow.WorkflowEntityTypes;
014import com.echothree.model.jooq.server.records.workflow.WorkflowEntranceDescriptions;
015import com.echothree.model.jooq.server.records.workflow.WorkflowEntranceDetails;
016import com.echothree.model.jooq.server.records.workflow.WorkflowEntrancePartyTypes;
017import com.echothree.model.jooq.server.records.workflow.WorkflowEntranceSecurityRoles;
018import com.echothree.model.jooq.server.records.workflow.WorkflowEntranceSelectors;
019import com.echothree.model.jooq.server.records.workflow.WorkflowEntranceSteps;
020import com.echothree.model.jooq.server.records.workflow.WorkflowEntrances;
021import com.echothree.model.jooq.server.records.workflow.WorkflowSelectorKinds;
022import com.echothree.model.jooq.server.records.workflow.WorkflowStepDescriptions;
023import com.echothree.model.jooq.server.records.workflow.WorkflowStepDetails;
024import com.echothree.model.jooq.server.records.workflow.WorkflowStepTypeDescriptions;
025import com.echothree.model.jooq.server.records.workflow.WorkflowStepTypes;
026import com.echothree.model.jooq.server.records.workflow.WorkflowSteps;
027import com.echothree.model.jooq.server.records.workflow.WorkflowTriggers;
028import com.echothree.model.jooq.server.records.workflow.Workflows;
029
030import org.jooq.TableField;
031import org.jooq.UniqueKey;
032import org.jooq.impl.DSL;
033import org.jooq.impl.Internal;
034
035/**
036 * Key definitions for the WorkflowUnique component.
037 */
038public interface WorkflowUniqueKeys {
039    public static final UniqueKey<WorkflowDescriptions> WORKFLOW_DESCRIPTIONS_WORKFLOW_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowDescriptions.WorkflowDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowDescriptions.WorkflowDescriptions.WORKFLOW, com.echothree.model.jooq.server.tables.workflow.WorkflowDescriptions.WorkflowDescriptions.LANGUAGE, com.echothree.model.jooq.server.tables.workflow.WorkflowDescriptions.WorkflowDescriptions.THRU_TIME }, true);
040    public static final UniqueKey<WorkflowDescriptions> WORKFLOW_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowDescriptions.WorkflowDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowDescriptions.WorkflowDescriptions.WORKFLOW_DESCRIPTION }, true);
041    public static final UniqueKey<WorkflowDestinationDescriptions> WORKFLOW_DESTINATION_DESCRIPTIONS_WORKFLOW_DESTINATION_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationDescriptions.WorkflowDestinationDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationDescriptions.WorkflowDestinationDescriptions.WORKFLOW_DESTINATION, com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationDescriptions.WorkflowDestinationDescriptions.LANGUAGE, com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationDescriptions.WorkflowDestinationDescriptions.THRU_TIME }, true);
042    public static final UniqueKey<WorkflowDestinationDescriptions> WORKFLOW_DESTINATION_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationDescriptions.WorkflowDestinationDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationDescriptions.WorkflowDestinationDescriptions.WORKFLOW_DESTINATION_DESCRIPTION }, true);
043    public static final UniqueKey<WorkflowDestinationDetails> WORKFLOW_DESTINATION_DETAILS_WORKFLOW_DESTINATION_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationDetails.WorkflowDestinationDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationDetails.WorkflowDestinationDetails.WORKFLOW_DESTINATION, com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationDetails.WorkflowDestinationDetails.THRU_TIME }, true);
044    public static final UniqueKey<WorkflowDestinationDetails> WORKFLOW_DESTINATION_DETAILS_WORKFLOW_STEP_AND_WORKFLOW_DESTINATION_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationDetails.WorkflowDestinationDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationDetails.WorkflowDestinationDetails.WORKFLOW_STEP, com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationDetails.WorkflowDestinationDetails.WORKFLOW_DESTINATION_NAME, com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationDetails.WorkflowDestinationDetails.THRU_TIME }, true);
045    public static final UniqueKey<WorkflowDestinationDetails> WORKFLOW_DESTINATION_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationDetails.WorkflowDestinationDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationDetails.WorkflowDestinationDetails.WORKFLOW_DESTINATION_DETAIL }, true);
046    public static final UniqueKey<WorkflowDestinationPartyTypes> WORKFLOW_DESTINATION_PARTY_TYPES_WORKFLOW_DESTINATION_AND_PARTY_TYPE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationPartyTypes.WorkflowDestinationPartyTypes, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationPartyTypes.WorkflowDestinationPartyTypes.WORKFLOW_DESTINATION, com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationPartyTypes.WorkflowDestinationPartyTypes.PARTY_TYPE, com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationPartyTypes.WorkflowDestinationPartyTypes.THRU_TIME }, true);
047    public static final UniqueKey<WorkflowDestinationPartyTypes> WORKFLOW_DESTINATION_PARTY_TYPES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationPartyTypes.WorkflowDestinationPartyTypes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationPartyTypes.WorkflowDestinationPartyTypes.WORKFLOW_DESTINATION_PARTY_TYPE }, true);
048    public static final UniqueKey<WorkflowDestinations> WORKFLOW_DESTINATIONS_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowDestinations.WorkflowDestinations, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowDestinations.WorkflowDestinations.ACTIVE_DETAIL }, true);
049    public static final UniqueKey<WorkflowDestinations> WORKFLOW_DESTINATIONS_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowDestinations.WorkflowDestinations, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowDestinations.WorkflowDestinations.LAST_DETAIL }, true);
050    public static final UniqueKey<WorkflowDestinations> WORKFLOW_DESTINATIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowDestinations.WorkflowDestinations, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowDestinations.WorkflowDestinations.WORKFLOW_DESTINATION }, true);
051    public static final UniqueKey<WorkflowDestinationSecurityRoles> WORKFLOW_DESTINATION_SECURITY_ROLES_WORKFLOW_DESTINATION_PARTY_TYPE_AND_SECURITY_ROLE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationSecurityRoles.WorkflowDestinationSecurityRoles, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationSecurityRoles.WorkflowDestinationSecurityRoles.WORKFLOW_DESTINATION_PARTY_TYPE, com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationSecurityRoles.WorkflowDestinationSecurityRoles.SECURITY_ROLE, com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationSecurityRoles.WorkflowDestinationSecurityRoles.THRU_TIME }, true);
052    public static final UniqueKey<WorkflowDestinationSecurityRoles> WORKFLOW_DESTINATION_SECURITY_ROLES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationSecurityRoles.WorkflowDestinationSecurityRoles, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationSecurityRoles.WorkflowDestinationSecurityRoles.WORKFLOW_DESTINATION_SECURITY_ROLE }, true);
053    public static final UniqueKey<WorkflowDestinationSelectors> WORKFLOW_DESTINATION_SELECTORS_WORKFLOW_DESTINATION_AND_SELECTOR_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationSelectors.WorkflowDestinationSelectors, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationSelectors.WorkflowDestinationSelectors.WORKFLOW_DESTINATION, com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationSelectors.WorkflowDestinationSelectors.SELECTOR, com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationSelectors.WorkflowDestinationSelectors.THRU_TIME }, true);
054    public static final UniqueKey<WorkflowDestinationSelectors> WORKFLOW_DESTINATION_SELECTORS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationSelectors.WorkflowDestinationSelectors, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationSelectors.WorkflowDestinationSelectors.WORKFLOW_DESTINATION_SELECTOR }, true);
055    public static final UniqueKey<WorkflowDestinationSteps> WORKFLOW_DESTINATION_STEPS_WORKFLOW_DESTINATION_AND_WORKFLOW_STEP_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationSteps.WorkflowDestinationSteps, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationSteps.WorkflowDestinationSteps.WORKFLOW_DESTINATION, com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationSteps.WorkflowDestinationSteps.WORKFLOW_STEP, com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationSteps.WorkflowDestinationSteps.THRU_TIME }, true);
056    public static final UniqueKey<WorkflowDestinationSteps> WORKFLOW_DESTINATION_STEPS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationSteps.WorkflowDestinationSteps, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowDestinationSteps.WorkflowDestinationSteps.WORKFLOW_DESTINATION_STEP }, true);
057    public static final UniqueKey<WorkflowDetails> WORKFLOW_DETAILS_WORKFLOW_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowDetails.WorkflowDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowDetails.WorkflowDetails.WORKFLOW, com.echothree.model.jooq.server.tables.workflow.WorkflowDetails.WorkflowDetails.THRU_TIME }, true);
058    public static final UniqueKey<WorkflowDetails> WORKFLOW_DETAILS_WORKFLOW_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowDetails.WorkflowDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowDetails.WorkflowDetails.WORKFLOW_NAME, com.echothree.model.jooq.server.tables.workflow.WorkflowDetails.WorkflowDetails.THRU_TIME }, true);
059    public static final UniqueKey<WorkflowDetails> WORKFLOW_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowDetails.WorkflowDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowDetails.WorkflowDetails.WORKFLOW_DETAIL }, true);
060    public static final UniqueKey<WorkflowEntityStatuses> WORKFLOW_ENTITY_STATUSES_ENTITY_INSTANCE_AND_WORKFLOW_STEP_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowEntityStatuses.WorkflowEntityStatuses, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowEntityStatuses.WorkflowEntityStatuses.ENTITY_INSTANCE, com.echothree.model.jooq.server.tables.workflow.WorkflowEntityStatuses.WorkflowEntityStatuses.WORKFLOW_STEP, com.echothree.model.jooq.server.tables.workflow.WorkflowEntityStatuses.WorkflowEntityStatuses.THRU_TIME }, true);
061    public static final UniqueKey<WorkflowEntityStatuses> WORKFLOW_ENTITY_STATUSES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowEntityStatuses.WorkflowEntityStatuses, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowEntityStatuses.WorkflowEntityStatuses.WORKFLOW_ENTITY_STATUS }, true);
062    public static final UniqueKey<WorkflowEntityTypes> WORKFLOW_ENTITY_TYPES_WORKFLOW_AND_ENTITY_TYPE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowEntityTypes.WorkflowEntityTypes, DSL.name("index3_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowEntityTypes.WorkflowEntityTypes.WORKFLOW, com.echothree.model.jooq.server.tables.workflow.WorkflowEntityTypes.WorkflowEntityTypes.ENTITY_TYPE, com.echothree.model.jooq.server.tables.workflow.WorkflowEntityTypes.WorkflowEntityTypes.THRU_TIME }, true);
063    public static final UniqueKey<WorkflowEntityTypes> WORKFLOW_ENTITY_TYPES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowEntityTypes.WorkflowEntityTypes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowEntityTypes.WorkflowEntityTypes.WORKFLOW_ENTITY_TYPE }, true);
064    public static final UniqueKey<WorkflowEntranceDescriptions> WORKFLOW_ENTRANCE_DESCRIPTIONS_WORKFLOW_ENTRANCE_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceDescriptions.WorkflowEntranceDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceDescriptions.WorkflowEntranceDescriptions.WORKFLOW_ENTRANCE, com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceDescriptions.WorkflowEntranceDescriptions.LANGUAGE, com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceDescriptions.WorkflowEntranceDescriptions.THRU_TIME }, true);
065    public static final UniqueKey<WorkflowEntranceDescriptions> WORKFLOW_ENTRANCE_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceDescriptions.WorkflowEntranceDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceDescriptions.WorkflowEntranceDescriptions.WORKFLOW_ENTRANCE_DESCRIPTION }, true);
066    public static final UniqueKey<WorkflowEntranceDetails> WORKFLOW_ENTRANCE_DETAILS_WORKFLOW_ENTRANCE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceDetails.WorkflowEntranceDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceDetails.WorkflowEntranceDetails.WORKFLOW_ENTRANCE, com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceDetails.WorkflowEntranceDetails.THRU_TIME }, true);
067    public static final UniqueKey<WorkflowEntranceDetails> WORKFLOW_ENTRANCE_DETAILS_WORKFLOW_AND_WORKFLOW_ENTRANCE_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceDetails.WorkflowEntranceDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceDetails.WorkflowEntranceDetails.WORKFLOW, com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceDetails.WorkflowEntranceDetails.WORKFLOW_ENTRANCE_NAME, com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceDetails.WorkflowEntranceDetails.THRU_TIME }, true);
068    public static final UniqueKey<WorkflowEntranceDetails> WORKFLOW_ENTRANCE_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceDetails.WorkflowEntranceDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceDetails.WorkflowEntranceDetails.WORKFLOW_ENTRANCE_DETAIL }, true);
069    public static final UniqueKey<WorkflowEntrancePartyTypes> WORKFLOW_ENTRANCE_PARTY_TYPES_WORKFLOW_ENTRANCE_AND_PARTY_TYPE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowEntrancePartyTypes.WorkflowEntrancePartyTypes, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowEntrancePartyTypes.WorkflowEntrancePartyTypes.WORKFLOW_ENTRANCE, com.echothree.model.jooq.server.tables.workflow.WorkflowEntrancePartyTypes.WorkflowEntrancePartyTypes.PARTY_TYPE, com.echothree.model.jooq.server.tables.workflow.WorkflowEntrancePartyTypes.WorkflowEntrancePartyTypes.THRU_TIME }, true);
070    public static final UniqueKey<WorkflowEntrancePartyTypes> WORKFLOW_ENTRANCE_PARTY_TYPES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowEntrancePartyTypes.WorkflowEntrancePartyTypes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowEntrancePartyTypes.WorkflowEntrancePartyTypes.WORKFLOW_ENTRANCE_PARTY_TYPE }, true);
071    public static final UniqueKey<WorkflowEntrances> WORKFLOW_ENTRANCES_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowEntrances.WorkflowEntrances, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowEntrances.WorkflowEntrances.ACTIVE_DETAIL }, true);
072    public static final UniqueKey<WorkflowEntrances> WORKFLOW_ENTRANCES_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowEntrances.WorkflowEntrances, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowEntrances.WorkflowEntrances.LAST_DETAIL }, true);
073    public static final UniqueKey<WorkflowEntrances> WORKFLOW_ENTRANCES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowEntrances.WorkflowEntrances, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowEntrances.WorkflowEntrances.WORKFLOW_ENTRANCE }, true);
074    public static final UniqueKey<WorkflowEntranceSecurityRoles> WORKFLOW_ENTRANCE_SECURITY_ROLES_WORKFLOW_ENTRANCE_PARTY_TYPE_AND_SECURITY_ROLE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceSecurityRoles.WorkflowEntranceSecurityRoles, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceSecurityRoles.WorkflowEntranceSecurityRoles.WORKFLOW_ENTRANCE_PARTY_TYPE, com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceSecurityRoles.WorkflowEntranceSecurityRoles.SECURITY_ROLE, com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceSecurityRoles.WorkflowEntranceSecurityRoles.THRU_TIME }, true);
075    public static final UniqueKey<WorkflowEntranceSecurityRoles> WORKFLOW_ENTRANCE_SECURITY_ROLES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceSecurityRoles.WorkflowEntranceSecurityRoles, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceSecurityRoles.WorkflowEntranceSecurityRoles.WORKFLOW_ENTRANCE_SECURITY_ROLE }, true);
076    public static final UniqueKey<WorkflowEntranceSelectors> WORKFLOW_ENTRANCE_SELECTORS_WORKFLOW_ENTRANCE_AND_SELECTOR_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceSelectors.WorkflowEntranceSelectors, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceSelectors.WorkflowEntranceSelectors.WORKFLOW_ENTRANCE, com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceSelectors.WorkflowEntranceSelectors.SELECTOR, com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceSelectors.WorkflowEntranceSelectors.THRU_TIME }, true);
077    public static final UniqueKey<WorkflowEntranceSelectors> WORKFLOW_ENTRANCE_SELECTORS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceSelectors.WorkflowEntranceSelectors, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceSelectors.WorkflowEntranceSelectors.WORKFLOW_ENTRANCE_SELECTOR }, true);
078    public static final UniqueKey<WorkflowEntranceSteps> WORKFLOW_ENTRANCE_STEPS_WORKFLOW_ENTRANCE_AND_WORKFLOW_STEP_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceSteps.WorkflowEntranceSteps, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceSteps.WorkflowEntranceSteps.WORKFLOW_ENTRANCE, com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceSteps.WorkflowEntranceSteps.WORKFLOW_STEP, com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceSteps.WorkflowEntranceSteps.THRU_TIME }, true);
079    public static final UniqueKey<WorkflowEntranceSteps> WORKFLOW_ENTRANCE_STEPS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceSteps.WorkflowEntranceSteps, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowEntranceSteps.WorkflowEntranceSteps.WORKFLOW_ENTRANCE_STEP }, true);
080    public static final UniqueKey<Workflows> WORKFLOWS_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.Workflows.Workflows, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.Workflows.Workflows.ACTIVE_DETAIL }, true);
081    public static final UniqueKey<Workflows> WORKFLOWS_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.Workflows.Workflows, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.Workflows.Workflows.LAST_DETAIL }, true);
082    public static final UniqueKey<Workflows> WORKFLOWS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.Workflows.Workflows, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.Workflows.Workflows.WORKFLOW }, true);
083    public static final UniqueKey<WorkflowSelectorKinds> WORKFLOW_SELECTOR_KINDS_WORKFLOW_AND_SELECTOR_KIND_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowSelectorKinds.WorkflowSelectorKinds, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowSelectorKinds.WorkflowSelectorKinds.WORKFLOW, com.echothree.model.jooq.server.tables.workflow.WorkflowSelectorKinds.WorkflowSelectorKinds.SELECTOR_KIND, com.echothree.model.jooq.server.tables.workflow.WorkflowSelectorKinds.WorkflowSelectorKinds.THRU_TIME }, true);
084    public static final UniqueKey<WorkflowSelectorKinds> WORKFLOW_SELECTOR_KINDS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowSelectorKinds.WorkflowSelectorKinds, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowSelectorKinds.WorkflowSelectorKinds.SELECTOR_KIND_WORKFLOW }, true);
085    public static final UniqueKey<WorkflowStepDescriptions> WORKFLOW_STEP_DESCRIPTIONS_WORKFLOW_STEP_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowStepDescriptions.WorkflowStepDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowStepDescriptions.WorkflowStepDescriptions.WORKFLOW_STEP, com.echothree.model.jooq.server.tables.workflow.WorkflowStepDescriptions.WorkflowStepDescriptions.LANGUAGE, com.echothree.model.jooq.server.tables.workflow.WorkflowStepDescriptions.WorkflowStepDescriptions.THRU_TIME }, true);
086    public static final UniqueKey<WorkflowStepDescriptions> WORKFLOW_STEP_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowStepDescriptions.WorkflowStepDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowStepDescriptions.WorkflowStepDescriptions.WORKFLOW_STEP_DESCRIPTION }, true);
087    public static final UniqueKey<WorkflowStepDetails> WORKFLOW_STEP_DETAILS_WORKFLOW_STEP_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowStepDetails.WorkflowStepDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowStepDetails.WorkflowStepDetails.WORKFLOW_STEP, com.echothree.model.jooq.server.tables.workflow.WorkflowStepDetails.WorkflowStepDetails.THRU_TIME }, true);
088    public static final UniqueKey<WorkflowStepDetails> WORKFLOW_STEP_DETAILS_WORKFLOW_AND_WORKFLOW_STEP_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowStepDetails.WorkflowStepDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowStepDetails.WorkflowStepDetails.WORKFLOW, com.echothree.model.jooq.server.tables.workflow.WorkflowStepDetails.WorkflowStepDetails.WORKFLOW_STEP_NAME, com.echothree.model.jooq.server.tables.workflow.WorkflowStepDetails.WorkflowStepDetails.THRU_TIME }, true);
089    public static final UniqueKey<WorkflowStepDetails> WORKFLOW_STEP_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowStepDetails.WorkflowStepDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowStepDetails.WorkflowStepDetails.WORKFLOW_STEP_DETAIL }, true);
090    public static final UniqueKey<WorkflowSteps> WORKFLOW_STEPS_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowSteps.WorkflowSteps, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowSteps.WorkflowSteps.ACTIVE_DETAIL }, true);
091    public static final UniqueKey<WorkflowSteps> WORKFLOW_STEPS_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowSteps.WorkflowSteps, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowSteps.WorkflowSteps.LAST_DETAIL }, true);
092    public static final UniqueKey<WorkflowSteps> WORKFLOW_STEPS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowSteps.WorkflowSteps, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowSteps.WorkflowSteps.WORKFLOW_STEP }, true);
093    public static final UniqueKey<WorkflowStepTypeDescriptions> WORKFLOW_STEP_TYPE_DESCRIPTIONS_WORKFLOW_STEP_TYPE_AND_LANGUAGE_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowStepTypeDescriptions.WorkflowStepTypeDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowStepTypeDescriptions.WorkflowStepTypeDescriptions.WORKFLOW_STEP_TYPE, com.echothree.model.jooq.server.tables.workflow.WorkflowStepTypeDescriptions.WorkflowStepTypeDescriptions.LANGUAGE }, true);
094    public static final UniqueKey<WorkflowStepTypeDescriptions> WORKFLOW_STEP_TYPE_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowStepTypeDescriptions.WorkflowStepTypeDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowStepTypeDescriptions.WorkflowStepTypeDescriptions.WORKFLOW_STEP_TYPE_DESCRIPTION }, true);
095    public static final UniqueKey<WorkflowStepTypes> WORKFLOW_STEP_TYPES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowStepTypes.WorkflowStepTypes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowStepTypes.WorkflowStepTypes.WORKFLOW_STEP_TYPE }, true);
096    public static final UniqueKey<WorkflowStepTypes> WORKFLOW_STEP_TYPES_WORKFLOW_STEP_TYPE_NAME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowStepTypes.WorkflowStepTypes, DSL.name("workflowsteptypename_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowStepTypes.WorkflowStepTypes.WORKFLOW_STEP_TYPE_NAME }, true);
097    public static final UniqueKey<WorkflowTriggers> WORKFLOW_TRIGGERS_WORKFLOW_ENTITY_STATUS_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowTriggers.WorkflowTriggers, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowTriggers.WorkflowTriggers.WORKFLOW_ENTITY_STATUS }, true);
098    public static final UniqueKey<WorkflowTriggers> WORKFLOW_TRIGGERS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.workflow.WorkflowTriggers.WorkflowTriggers, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.workflow.WorkflowTriggers.WorkflowTriggers.WORKFLOW_TRIGGER }, true);
099}