001 /* 002 * Copyright 2011 The Kuali Foundation. 003 * 004 * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php 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 package org.kuali.kfs.module.ar.batch.vo; 017 018 019 public class CustomerAddressDigesterVO { 020 021 private String customerNumber; 022 private String customerAddressName; 023 private String customerLine1StreetAddress; 024 private String customerLine2StreetAddress; 025 private String customerCityName; 026 private String customerStateCode; 027 private String customerZipCode; 028 private String customerCountryCode; 029 private String customerAddressInternationalProvinceName; 030 private String customerInternationalMailCode; 031 private String customerEmailAddress; 032 private String customerAddressTypeCode; 033 private String customerAddressEndDate; 034 035 public CustomerAddressDigesterVO() {} 036 037 public String getCustomerNumber() { 038 return customerNumber; 039 } 040 041 public void setCustomerNumber(String customerNumber) { 042 this.customerNumber = customerNumber; 043 } 044 045 public String getCustomerAddressName() { 046 return customerAddressName; 047 } 048 049 public void setCustomerAddressName(String customerAddressName) { 050 this.customerAddressName = customerAddressName; 051 } 052 053 public String getCustomerLine1StreetAddress() { 054 return customerLine1StreetAddress; 055 } 056 057 public void setCustomerLine1StreetAddress(String customerLine1StreetAddress) { 058 this.customerLine1StreetAddress = customerLine1StreetAddress; 059 } 060 061 public String getCustomerLine2StreetAddress() { 062 return customerLine2StreetAddress; 063 } 064 065 public void setCustomerLine2StreetAddress(String customerLine2StreetAddress) { 066 this.customerLine2StreetAddress = customerLine2StreetAddress; 067 } 068 069 public String getCustomerCityName() { 070 return customerCityName; 071 } 072 073 public void setCustomerCityName(String customerCityName) { 074 this.customerCityName = customerCityName; 075 } 076 077 public String getCustomerStateCode() { 078 return customerStateCode; 079 } 080 081 public void setCustomerStateCode(String customerStateCode) { 082 this.customerStateCode = customerStateCode; 083 } 084 085 public String getCustomerZipCode() { 086 return customerZipCode; 087 } 088 089 public void setCustomerZipCode(String customerZipCode) { 090 this.customerZipCode = customerZipCode; 091 } 092 093 public String getCustomerCountryCode() { 094 return customerCountryCode; 095 } 096 097 public void setCustomerCountryCode(String customerCountryCode) { 098 this.customerCountryCode = customerCountryCode; 099 } 100 101 public String getCustomerAddressInternationalProvinceName() { 102 return customerAddressInternationalProvinceName; 103 } 104 105 public void setCustomerAddressInternationalProvinceName(String customerAddressInternationalProvinceName) { 106 this.customerAddressInternationalProvinceName = customerAddressInternationalProvinceName; 107 } 108 109 public String getCustomerInternationalMailCode() { 110 return customerInternationalMailCode; 111 } 112 113 public void setCustomerInternationalMailCode(String customerInternationalMailCode) { 114 this.customerInternationalMailCode = customerInternationalMailCode; 115 } 116 117 public String getCustomerEmailAddress() { 118 return customerEmailAddress; 119 } 120 121 public void setCustomerEmailAddress(String customerEmailAddress) { 122 this.customerEmailAddress = customerEmailAddress; 123 } 124 125 public String getCustomerAddressTypeCode() { 126 return customerAddressTypeCode; 127 } 128 129 public void setCustomerAddressTypeCode(String customerAddressTypeCode) { 130 this.customerAddressTypeCode = customerAddressTypeCode; 131 } 132 133 public String getCustomerAddressEndDate() { 134 return customerAddressEndDate; 135 } 136 137 public void setCustomerAddressEndDate(String customerAddressEndDate) { 138 this.customerAddressEndDate = customerAddressEndDate; 139 } 140 141 }