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 * JobFormsImpl.java 021 */ 022 023package com.echothree.control.user.job.server; 024 025import com.echothree.control.user.job.common.edit.*; 026import com.echothree.control.user.job.common.form.*; 027import com.echothree.control.user.job.common.spec.*; 028 029public class JobFormsImpl { 030 031 public JobDescriptionEdit getJobDescriptionEdit() { 032 return JobEditFactory.getJobDescriptionEdit(); 033 } 034 035 public JobEdit getJobEdit() { 036 return JobEditFactory.getJobEdit(); 037 } 038 039 public CreateJobDescriptionForm getCreateJobDescriptionForm() { 040 return JobFormFactory.getCreateJobDescriptionForm(); 041 } 042 043 public CreateJobForm getCreateJobForm() { 044 return JobFormFactory.getCreateJobForm(); 045 } 046 047 public DeleteJobDescriptionForm getDeleteJobDescriptionForm() { 048 return JobFormFactory.getDeleteJobDescriptionForm(); 049 } 050 051 public DeleteJobForm getDeleteJobForm() { 052 return JobFormFactory.getDeleteJobForm(); 053 } 054 055 public EditJobDescriptionForm getEditJobDescriptionForm() { 056 return JobFormFactory.getEditJobDescriptionForm(); 057 } 058 059 public EditJobForm getEditJobForm() { 060 return JobFormFactory.getEditJobForm(); 061 } 062 063 public EndJobForm getEndJobForm() { 064 return JobFormFactory.getEndJobForm(); 065 } 066 067 public GetJobDescriptionsForm getGetJobDescriptionsForm() { 068 return JobFormFactory.getGetJobDescriptionsForm(); 069 } 070 071 public GetJobForm getGetJobForm() { 072 return JobFormFactory.getGetJobForm(); 073 } 074 075 public GetJobStatusChoicesForm getGetJobStatusChoicesForm() { 076 return JobFormFactory.getGetJobStatusChoicesForm(); 077 } 078 079 public GetJobsForm getGetJobsForm() { 080 return JobFormFactory.getGetJobsForm(); 081 } 082 083 public SetJobStatusForm getSetJobStatusForm() { 084 return JobFormFactory.getSetJobStatusForm(); 085 } 086 087 public StartJobForm getStartJobForm() { 088 return JobFormFactory.getStartJobForm(); 089 } 090 091 public JobDescriptionSpec getJobDescriptionSpec() { 092 return JobSpecFactory.getJobDescriptionSpec(); 093 } 094 095 public JobSpec getJobSpec() { 096 return JobSpecFactory.getJobSpec(); 097 } 098 099}