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 * AuthenticationFormsImpl.java
021 */
022
023package com.echothree.control.user.authentication.server;
024
025import com.echothree.control.user.authentication.common.form.*;
026
027public class AuthenticationFormsImpl {
028    
029    public BaseLoginForm getBaseLoginForm() {
030        return AuthenticationFormFactory.getBaseLoginForm();
031    }
032    
033    public CustomerLoginForm getCustomerLoginForm() {
034        return AuthenticationFormFactory.getCustomerLoginForm();
035    }
036    
037    public EmployeeLoginForm getEmployeeLoginForm() {
038        return AuthenticationFormFactory.getEmployeeLoginForm();
039    }
040    
041    public GetCustomerLoginDefaultsForm getGetCustomerLoginDefaultsForm() {
042        return AuthenticationFormFactory.getGetCustomerLoginDefaultsForm();
043    }
044    
045    public GetEmployeeLoginDefaultsForm getGetEmployeeLoginDefaultsForm() {
046        return AuthenticationFormFactory.getGetEmployeeLoginDefaultsForm();
047    }
048    
049    public GetJobUserVisitForm getGetJobUserVisitForm() {
050        return AuthenticationFormFactory.getGetJobUserVisitForm();
051    }
052    
053    public GetUserVisitForm getGetUserVisitForm() {
054        return AuthenticationFormFactory.getGetUserVisitForm();
055    }
056    
057    public GetVendorLoginDefaultsForm getGetVendorLoginDefaultsForm() {
058        return AuthenticationFormFactory.getGetVendorLoginDefaultsForm();
059    }
060    
061    public InvalidateAbandonedUserVisitsForm getInvalidateAbandonedUserVisitsForm() {
062        return AuthenticationFormFactory.getInvalidateAbandonedUserVisitsForm();
063    }
064    
065    public RecoverPasswordForm getRecoverPasswordForm() {
066        return AuthenticationFormFactory.getRecoverPasswordForm();
067    }
068    
069    public RemoveInactiveUserKeysForm getRemoveInactiveUserKeysForm() {
070        return AuthenticationFormFactory.getRemoveInactiveUserKeysForm();
071    }
072    
073    public SetPasswordForm getSetPasswordForm() {
074        return AuthenticationFormFactory.getSetPasswordForm();
075    }
076    
077    public VendorLoginForm getVendorLoginForm() {
078        return AuthenticationFormFactory.getVendorLoginForm();
079    }
080    
081}