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 * PartySpecFactory.java 021 */ 022 023package com.echothree.control.user.party.common.spec; 024 025import com.echothree.util.common.form.BaseFormFactory; 026 027public class PartySpecFactory 028 extends BaseFormFactory { 029 030 static public BirthdayFormatDescriptionSpec getBirthdayFormatDescriptionSpec() { 031 return createForm(BirthdayFormatDescriptionSpec.class); 032 } 033 034 static public BirthdayFormatSpec getBirthdayFormatSpec() { 035 return createForm(BirthdayFormatSpec.class); 036 } 037 038 static public CompanySpec getCompanySpec() { 039 return createForm(CompanySpec.class); 040 } 041 042 static public DateTimeFormatDescriptionSpec getDateTimeFormatDescriptionSpec() { 043 return createForm(DateTimeFormatDescriptionSpec.class); 044 } 045 046 static public DateTimeFormatSpec getDateTimeFormatSpec() { 047 return createForm(DateTimeFormatSpec.class); 048 } 049 050 static public DateTimeFormatUniversalSpec getDateTimeFormatUniversalSpec() { 051 return createForm(DateTimeFormatUniversalSpec.class); 052 } 053 054 static public DepartmentSpec getDepartmentSpec() { 055 return createForm(DepartmentSpec.class); 056 } 057 058 static public DivisionSpec getDivisionSpec() { 059 return createForm(DivisionSpec.class); 060 } 061 062 static public EmployeeSpec getEmployeeSpec() { 063 return createForm(EmployeeSpec.class); 064 } 065 066 static public GenderDescriptionSpec getGenderDescriptionSpec() { 067 return createForm(GenderDescriptionSpec.class); 068 } 069 070 static public GenderSpec getGenderSpec() { 071 return createForm(GenderSpec.class); 072 } 073 074 static public LanguageSpec getLanguageSpec() { 075 return createForm(LanguageSpec.class); 076 } 077 078 static public LanguageUniversalSpec getLanguageUniversalSpec() { 079 return createForm(LanguageUniversalSpec.class); 080 } 081 082 static public MoodDescriptionSpec getMoodDescriptionSpec() { 083 return createForm(MoodDescriptionSpec.class); 084 } 085 086 static public MoodSpec getMoodSpec() { 087 return createForm(MoodSpec.class); 088 } 089 090 static public NameSuffixSpec getNameSuffixSpec() { 091 return createForm(NameSuffixSpec.class); 092 } 093 094 static public PartyAliasSpec getPartyAliasSpec() { 095 return createForm(PartyAliasSpec.class); 096 } 097 098 static public PartyAliasTypeDescriptionSpec getPartyAliasTypeDescriptionSpec() { 099 return createForm(PartyAliasTypeDescriptionSpec.class); 100 } 101 102 static public PartyAliasTypeSpec getPartyAliasTypeSpec() { 103 return createForm(PartyAliasTypeSpec.class); 104 } 105 106 static public PartyAliasTypeUniversalSpec getPartyAliasTypeUniversalSpec() { 107 return createForm(PartyAliasTypeUniversalSpec.class); 108 } 109 110 static public PartyRelationshipSpec getPartyRelationshipSpec() { 111 return createForm(PartyRelationshipSpec.class); 112 } 113 114 static public PartyRelationshipTypeSpec getPartyRelationshipTypeSpec() { 115 return createForm(PartyRelationshipTypeSpec.class); 116 } 117 118 static public PartySpec getPartySpec() { 119 return createForm(PartySpec.class); 120 } 121 122 static public PartyTypeDescriptionSpec getPartyTypeDescriptionSpec() { 123 return createForm(PartyTypeDescriptionSpec.class); 124 } 125 126 static public PartyTypeSpec getPartyTypeSpec() { 127 return createForm(PartyTypeSpec.class); 128 } 129 130 static public PartyTypeUniversalSpec getPartyTypeUniversalSpec() { 131 return createForm(PartyTypeUniversalSpec.class); 132 } 133 134 static public PartyTypeUseSpec getPartyTypeUseSpec() { 135 return createForm(PartyTypeUseSpec.class); 136 } 137 138 static public PartyTypeUseTypeDescriptionSpec getPartyTypeUseTypeDescriptionSpec() { 139 return createForm(PartyTypeUseTypeDescriptionSpec.class); 140 } 141 142 static public PartyTypeUseTypeSpec getPartyTypeUseTypeSpec() { 143 return createForm(PartyTypeUseTypeSpec.class); 144 } 145 146 static public PartyUniversalSpec getPartyUniversalSpec() { 147 return createForm(PartyUniversalSpec.class); 148 } 149 150 static public PersonalTitleSpec getPersonalTitleSpec() { 151 return createForm(PersonalTitleSpec.class); 152 } 153 154 static public TimeZoneDescriptionSpec getTimeZoneDescriptionSpec() { 155 return createForm(TimeZoneDescriptionSpec.class); 156 } 157 158 static public TimeZoneSpec getTimeZoneSpec() { 159 return createForm(TimeZoneSpec.class); 160 } 161 162 static public TimeZoneUniversalSpec getTimeZoneUniversalSpec() { 163 return createForm(TimeZoneUniversalSpec.class); 164 } 165 166}