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 017package com.echothree.control.user.payment.common.edit; 018 019import com.echothree.util.common.form.BaseEdit; 020 021public interface PartyPaymentMethodEdit 022 extends BaseEdit { 023 024 String getDescription(); 025 void setDescription(String description); 026 027 String getDeleteWhenUnused(); 028 void setDeleteWhenUnused(String deleteWhenUnused); 029 030 String getIsDefault(); 031 void setIsDefault(String isDefault); 032 033 String getSortOrder(); 034 void setSortOrder(String sortOrder); 035 036 String getPersonalTitleId(); 037 void setPersonalTitleId(String personalTitleId); 038 039 String getFirstName(); 040 void setFirstName(String firstName); 041 042 String getMiddleName(); 043 void setMiddleName(String middleName); 044 045 String getLastName(); 046 void setLastName(String lastName); 047 048 String getNameSuffixId(); 049 void setNameSuffixId(String nameSuffixId); 050 051 String getName(); 052 void setName(String name); 053 054 String getNumber(); 055 void setNumber(String number); 056 057 String getSecurityCode(); 058 void setSecurityCode(String securityCode); 059 060 String getExpirationMonth(); 061 void setExpirationMonth(String expirationMonth); 062 063 String getExpirationYear(); 064 void setExpirationYear(String expirationYear); 065 066 String getBillingContactMechanismName(); 067 void setBillingContactMechanismName(String billingContactMechanismName); 068 069 String getIssuerName(); 070 void setIssuerName(String issuerName); 071 072 String getIssuerContactMechanismName(); 073 void setIssuerContactMechanismName(String issuerContactMechanismName); 074 075}