/* * The Kuali Financial System, a comprehensive financial management system for higher education. * * Copyright 2005-2014 The Kuali Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.kuali.kfs.module.ar.batch.vo; public class CustomerAddressDigesterVO { private String customerNumber; private String customerAddressName; private String customerLine1StreetAddress; private String customerLine2StreetAddress; private String customerCityName; private String customerStateCode; private String customerZipCode; private String customerCountryCode; private String customerAddressInternationalProvinceName; private String customerInternationalMailCode; private String customerEmailAddress; private String customerAddressTypeCode; private String customerAddressEndDate; public CustomerAddressDigesterVO() {} public String getCustomerNumber() { return customerNumber; } public void setCustomerNumber(String customerNumber) { this.customerNumber = customerNumber; } public String getCustomerAddressName() { return customerAddressName; } public void setCustomerAddressName(String customerAddressName) { this.customerAddressName = customerAddressName; } public String getCustomerLine1StreetAddress() { return customerLine1StreetAddress; } public void setCustomerLine1StreetAddress(String customerLine1StreetAddress) { this.customerLine1StreetAddress = customerLine1StreetAddress; } public String getCustomerLine2StreetAddress() { return customerLine2StreetAddress; } public void setCustomerLine2StreetAddress(String customerLine2StreetAddress) { this.customerLine2StreetAddress = customerLine2StreetAddress; } public String getCustomerCityName() { return customerCityName; } public void setCustomerCityName(String customerCityName) { this.customerCityName = customerCityName; } public String getCustomerStateCode() { return customerStateCode; } public void setCustomerStateCode(String customerStateCode) { this.customerStateCode = customerStateCode; } public String getCustomerZipCode() { return customerZipCode; } public void setCustomerZipCode(String customerZipCode) { this.customerZipCode = customerZipCode; } public String getCustomerCountryCode() { return customerCountryCode; } public void setCustomerCountryCode(String customerCountryCode) { this.customerCountryCode = customerCountryCode; } public String getCustomerAddressInternationalProvinceName() { return customerAddressInternationalProvinceName; } public void setCustomerAddressInternationalProvinceName(String customerAddressInternationalProvinceName) { this.customerAddressInternationalProvinceName = customerAddressInternationalProvinceName; } public String getCustomerInternationalMailCode() { return customerInternationalMailCode; } public void setCustomerInternationalMailCode(String customerInternationalMailCode) { this.customerInternationalMailCode = customerInternationalMailCode; } public String getCustomerEmailAddress() { return customerEmailAddress; } public void setCustomerEmailAddress(String customerEmailAddress) { this.customerEmailAddress = customerEmailAddress; } public String getCustomerAddressTypeCode() { return customerAddressTypeCode; } public void setCustomerAddressTypeCode(String customerAddressTypeCode) { this.customerAddressTypeCode = customerAddressTypeCode; } public String getCustomerAddressEndDate() { return customerAddressEndDate; } public void setCustomerAddressEndDate(String customerAddressEndDate) { this.customerAddressEndDate = customerAddressEndDate; } }