001// --------------------------------------------------------------------------------
002// Copyright 2002-2024 Echo Three, LLC
003//
004// Licensed under the Apache License, Version 2.0 (the "License");
005// you may not use this file except in compliance with the License.
006// You may obtain a copy of the License at
007//
008//     http://www.apache.org/licenses/LICENSE-2.0
009//
010// Unless required by applicable law or agreed to in writing, software
011// distributed under the License is distributed on an "AS IS" BASIS,
012// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013// See the License for the specific language governing permissions and
014// limitations under the License.
015// --------------------------------------------------------------------------------
016// Generated File -- DO NOT EDIT BY HAND
017// --------------------------------------------------------------------------------
018
019/**
020 * WorkflowSpecFactory.java
021 */
022
023package com.echothree.control.user.workflow.common.spec;
024
025import com.echothree.util.common.form.BaseFormFactory;
026
027public class WorkflowSpecFactory
028        extends BaseFormFactory {
029    
030    static public WorkflowDescriptionSpec getWorkflowDescriptionSpec() {
031        return createForm(WorkflowDescriptionSpec.class);
032    }
033    
034    static public WorkflowDestinationDescriptionSpec getWorkflowDestinationDescriptionSpec() {
035        return createForm(WorkflowDestinationDescriptionSpec.class);
036    }
037    
038    static public WorkflowDestinationPartyTypeSpec getWorkflowDestinationPartyTypeSpec() {
039        return createForm(WorkflowDestinationPartyTypeSpec.class);
040    }
041    
042    static public WorkflowDestinationSecurityRoleSpec getWorkflowDestinationSecurityRoleSpec() {
043        return createForm(WorkflowDestinationSecurityRoleSpec.class);
044    }
045    
046    static public WorkflowDestinationSelectorSpec getWorkflowDestinationSelectorSpec() {
047        return createForm(WorkflowDestinationSelectorSpec.class);
048    }
049    
050    static public WorkflowDestinationSpec getWorkflowDestinationSpec() {
051        return createForm(WorkflowDestinationSpec.class);
052    }
053    
054    static public WorkflowDestinationStepSpec getWorkflowDestinationStepSpec() {
055        return createForm(WorkflowDestinationStepSpec.class);
056    }
057    
058    static public WorkflowDestinationUniversalSpec getWorkflowDestinationUniversalSpec() {
059        return createForm(WorkflowDestinationUniversalSpec.class);
060    }
061    
062    static public WorkflowEntityTypeSpec getWorkflowEntityTypeSpec() {
063        return createForm(WorkflowEntityTypeSpec.class);
064    }
065    
066    static public WorkflowEntranceDescriptionSpec getWorkflowEntranceDescriptionSpec() {
067        return createForm(WorkflowEntranceDescriptionSpec.class);
068    }
069    
070    static public WorkflowEntrancePartyTypeSpec getWorkflowEntrancePartyTypeSpec() {
071        return createForm(WorkflowEntrancePartyTypeSpec.class);
072    }
073    
074    static public WorkflowEntranceSecurityRoleSpec getWorkflowEntranceSecurityRoleSpec() {
075        return createForm(WorkflowEntranceSecurityRoleSpec.class);
076    }
077    
078    static public WorkflowEntranceSelectorSpec getWorkflowEntranceSelectorSpec() {
079        return createForm(WorkflowEntranceSelectorSpec.class);
080    }
081    
082    static public WorkflowEntranceSpec getWorkflowEntranceSpec() {
083        return createForm(WorkflowEntranceSpec.class);
084    }
085    
086    static public WorkflowEntranceStepSpec getWorkflowEntranceStepSpec() {
087        return createForm(WorkflowEntranceStepSpec.class);
088    }
089    
090    static public WorkflowEntranceUniversalSpec getWorkflowEntranceUniversalSpec() {
091        return createForm(WorkflowEntranceUniversalSpec.class);
092    }
093    
094    static public WorkflowSelectorKindSpec getWorkflowSelectorKindSpec() {
095        return createForm(WorkflowSelectorKindSpec.class);
096    }
097    
098    static public WorkflowSpec getWorkflowSpec() {
099        return createForm(WorkflowSpec.class);
100    }
101    
102    static public WorkflowStepDescriptionSpec getWorkflowStepDescriptionSpec() {
103        return createForm(WorkflowStepDescriptionSpec.class);
104    }
105    
106    static public WorkflowStepSpec getWorkflowStepSpec() {
107        return createForm(WorkflowStepSpec.class);
108    }
109    
110    static public WorkflowStepTypeDescriptionSpec getWorkflowStepTypeDescriptionSpec() {
111        return createForm(WorkflowStepTypeDescriptionSpec.class);
112    }
113    
114    static public WorkflowStepTypeSpec getWorkflowStepTypeSpec() {
115        return createForm(WorkflowStepTypeSpec.class);
116    }
117    
118    static public WorkflowStepTypeUniversalSpec getWorkflowStepTypeUniversalSpec() {
119        return createForm(WorkflowStepTypeUniversalSpec.class);
120    }
121    
122    static public WorkflowStepUniversalSpec getWorkflowStepUniversalSpec() {
123        return createForm(WorkflowStepUniversalSpec.class);
124    }
125    
126    static public WorkflowUniversalSpec getWorkflowUniversalSpec() {
127        return createForm(WorkflowUniversalSpec.class);
128    }
129    
130}