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 * OrderSpecFactory.java
021 */
022
023package com.echothree.control.user.order.common.spec;
024
025import com.echothree.util.common.form.BaseFormFactory;
026
027public class OrderSpecFactory
028        extends BaseFormFactory {
029    
030    static public OrderAdjustmentSpec getOrderAdjustmentSpec() {
031        return createForm(OrderAdjustmentSpec.class);
032    }
033    
034    static public OrderAdjustmentTypeDescriptionSpec getOrderAdjustmentTypeDescriptionSpec() {
035        return createForm(OrderAdjustmentTypeDescriptionSpec.class);
036    }
037    
038    static public OrderAdjustmentTypeSpec getOrderAdjustmentTypeSpec() {
039        return createForm(OrderAdjustmentTypeSpec.class);
040    }
041    
042    static public OrderAliasSpec getOrderAliasSpec() {
043        return createForm(OrderAliasSpec.class);
044    }
045    
046    static public OrderAliasTypeDescriptionSpec getOrderAliasTypeDescriptionSpec() {
047        return createForm(OrderAliasTypeDescriptionSpec.class);
048    }
049    
050    static public OrderAliasTypeSpec getOrderAliasTypeSpec() {
051        return createForm(OrderAliasTypeSpec.class);
052    }
053    
054    static public OrderBatchSpec getOrderBatchSpec() {
055        return createForm(OrderBatchSpec.class);
056    }
057    
058    static public OrderLineAdjustmentSpec getOrderLineAdjustmentSpec() {
059        return createForm(OrderLineAdjustmentSpec.class);
060    }
061    
062    static public OrderLineAdjustmentTypeDescriptionSpec getOrderLineAdjustmentTypeDescriptionSpec() {
063        return createForm(OrderLineAdjustmentTypeDescriptionSpec.class);
064    }
065    
066    static public OrderLineAdjustmentTypeSpec getOrderLineAdjustmentTypeSpec() {
067        return createForm(OrderLineAdjustmentTypeSpec.class);
068    }
069    
070    static public OrderLineSpec getOrderLineSpec() {
071        return createForm(OrderLineSpec.class);
072    }
073    
074    static public OrderPriorityDescriptionSpec getOrderPriorityDescriptionSpec() {
075        return createForm(OrderPriorityDescriptionSpec.class);
076    }
077    
078    static public OrderPrioritySpec getOrderPrioritySpec() {
079        return createForm(OrderPrioritySpec.class);
080    }
081    
082    static public OrderPriorityUniversalSpec getOrderPriorityUniversalSpec() {
083        return createForm(OrderPriorityUniversalSpec.class);
084    }
085    
086    static public OrderRoleSpec getOrderRoleSpec() {
087        return createForm(OrderRoleSpec.class);
088    }
089    
090    static public OrderRoleTypeDescriptionSpec getOrderRoleTypeDescriptionSpec() {
091        return createForm(OrderRoleTypeDescriptionSpec.class);
092    }
093    
094    static public OrderRoleTypeSpec getOrderRoleTypeSpec() {
095        return createForm(OrderRoleTypeSpec.class);
096    }
097    
098    static public OrderShipmentGroupSpec getOrderShipmentGroupSpec() {
099        return createForm(OrderShipmentGroupSpec.class);
100    }
101    
102    static public OrderSpec getOrderSpec() {
103        return createForm(OrderSpec.class);
104    }
105    
106    static public OrderTimeTypeDescriptionSpec getOrderTimeTypeDescriptionSpec() {
107        return createForm(OrderTimeTypeDescriptionSpec.class);
108    }
109    
110    static public OrderTimeTypeSpec getOrderTimeTypeSpec() {
111        return createForm(OrderTimeTypeSpec.class);
112    }
113    
114    static public OrderTimeTypeUniversalSpec getOrderTimeTypeUniversalSpec() {
115        return createForm(OrderTimeTypeUniversalSpec.class);
116    }
117    
118    static public OrderTypeDescriptionSpec getOrderTypeDescriptionSpec() {
119        return createForm(OrderTypeDescriptionSpec.class);
120    }
121    
122    static public OrderTypeSpec getOrderTypeSpec() {
123        return createForm(OrderTypeSpec.class);
124    }
125    
126    static public OrderTypeUniversalSpec getOrderTypeUniversalSpec() {
127        return createForm(OrderTypeUniversalSpec.class);
128    }
129    
130}