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 * IndexFormFactory.java 021 */ 022 023package com.echothree.control.user.index.common.form; 024 025import com.echothree.util.common.form.BaseFormFactory; 026 027public class IndexFormFactory 028 extends BaseFormFactory { 029 030 static public CreateIndexDescriptionForm getCreateIndexDescriptionForm() { 031 return createForm(CreateIndexDescriptionForm.class); 032 } 033 034 static public CreateIndexFieldDescriptionForm getCreateIndexFieldDescriptionForm() { 035 return createForm(CreateIndexFieldDescriptionForm.class); 036 } 037 038 static public CreateIndexFieldForm getCreateIndexFieldForm() { 039 return createForm(CreateIndexFieldForm.class); 040 } 041 042 static public CreateIndexForm getCreateIndexForm() { 043 return createForm(CreateIndexForm.class); 044 } 045 046 static public CreateIndexTypeDescriptionForm getCreateIndexTypeDescriptionForm() { 047 return createForm(CreateIndexTypeDescriptionForm.class); 048 } 049 050 static public CreateIndexTypeForm getCreateIndexTypeForm() { 051 return createForm(CreateIndexTypeForm.class); 052 } 053 054 static public DeleteIndexDescriptionForm getDeleteIndexDescriptionForm() { 055 return createForm(DeleteIndexDescriptionForm.class); 056 } 057 058 static public DeleteIndexFieldDescriptionForm getDeleteIndexFieldDescriptionForm() { 059 return createForm(DeleteIndexFieldDescriptionForm.class); 060 } 061 062 static public DeleteIndexFieldForm getDeleteIndexFieldForm() { 063 return createForm(DeleteIndexFieldForm.class); 064 } 065 066 static public DeleteIndexForm getDeleteIndexForm() { 067 return createForm(DeleteIndexForm.class); 068 } 069 070 static public DeleteIndexTypeDescriptionForm getDeleteIndexTypeDescriptionForm() { 071 return createForm(DeleteIndexTypeDescriptionForm.class); 072 } 073 074 static public DeleteIndexTypeForm getDeleteIndexTypeForm() { 075 return createForm(DeleteIndexTypeForm.class); 076 } 077 078 static public EditIndexDescriptionForm getEditIndexDescriptionForm() { 079 return createForm(EditIndexDescriptionForm.class); 080 } 081 082 static public EditIndexFieldDescriptionForm getEditIndexFieldDescriptionForm() { 083 return createForm(EditIndexFieldDescriptionForm.class); 084 } 085 086 static public EditIndexFieldForm getEditIndexFieldForm() { 087 return createForm(EditIndexFieldForm.class); 088 } 089 090 static public EditIndexForm getEditIndexForm() { 091 return createForm(EditIndexForm.class); 092 } 093 094 static public EditIndexTypeDescriptionForm getEditIndexTypeDescriptionForm() { 095 return createForm(EditIndexTypeDescriptionForm.class); 096 } 097 098 static public EditIndexTypeForm getEditIndexTypeForm() { 099 return createForm(EditIndexTypeForm.class); 100 } 101 102 static public ForceReindexForm getForceReindexForm() { 103 return createForm(ForceReindexForm.class); 104 } 105 106 static public GetIndexChoicesForm getGetIndexChoicesForm() { 107 return createForm(GetIndexChoicesForm.class); 108 } 109 110 static public GetIndexDescriptionForm getGetIndexDescriptionForm() { 111 return createForm(GetIndexDescriptionForm.class); 112 } 113 114 static public GetIndexDescriptionsForm getGetIndexDescriptionsForm() { 115 return createForm(GetIndexDescriptionsForm.class); 116 } 117 118 static public GetIndexFieldChoicesForm getGetIndexFieldChoicesForm() { 119 return createForm(GetIndexFieldChoicesForm.class); 120 } 121 122 static public GetIndexFieldDescriptionForm getGetIndexFieldDescriptionForm() { 123 return createForm(GetIndexFieldDescriptionForm.class); 124 } 125 126 static public GetIndexFieldDescriptionsForm getGetIndexFieldDescriptionsForm() { 127 return createForm(GetIndexFieldDescriptionsForm.class); 128 } 129 130 static public GetIndexFieldForm getGetIndexFieldForm() { 131 return createForm(GetIndexFieldForm.class); 132 } 133 134 static public GetIndexFieldsForm getGetIndexFieldsForm() { 135 return createForm(GetIndexFieldsForm.class); 136 } 137 138 static public GetIndexForm getGetIndexForm() { 139 return createForm(GetIndexForm.class); 140 } 141 142 static public GetIndexTypeChoicesForm getGetIndexTypeChoicesForm() { 143 return createForm(GetIndexTypeChoicesForm.class); 144 } 145 146 static public GetIndexTypeDescriptionForm getGetIndexTypeDescriptionForm() { 147 return createForm(GetIndexTypeDescriptionForm.class); 148 } 149 150 static public GetIndexTypeDescriptionsForm getGetIndexTypeDescriptionsForm() { 151 return createForm(GetIndexTypeDescriptionsForm.class); 152 } 153 154 static public GetIndexTypeForm getGetIndexTypeForm() { 155 return createForm(GetIndexTypeForm.class); 156 } 157 158 static public GetIndexTypesForm getGetIndexTypesForm() { 159 return createForm(GetIndexTypesForm.class); 160 } 161 162 static public GetIndexesForm getGetIndexesForm() { 163 return createForm(GetIndexesForm.class); 164 } 165 166 static public GetIndexsForm getGetIndexsForm() { 167 return createForm(GetIndexsForm.class); 168 } 169 170 static public SetDefaultIndexFieldForm getSetDefaultIndexFieldForm() { 171 return createForm(SetDefaultIndexFieldForm.class); 172 } 173 174 static public SetDefaultIndexForm getSetDefaultIndexForm() { 175 return createForm(SetDefaultIndexForm.class); 176 } 177 178 static public SetDefaultIndexTypeForm getSetDefaultIndexTypeForm() { 179 return createForm(SetDefaultIndexTypeForm.class); 180 } 181 182 static public UpdateIndexesForm getUpdateIndexesForm() { 183 return createForm(UpdateIndexesForm.class); 184 } 185 186}