001 /* 002 * Copyright 2007-2008 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 edu.sampleu.financial.bo; 017 018 import java.util.LinkedHashMap; 019 020 import org.kuali.rice.kns.bo.PersistableBusinessObjectBase; 021 022 023 /** 024 * Attribute Reference Dummy Business Object for Vendor attributes 025 */ 026 public class VendorGenericAttributes extends PersistableBusinessObjectBase { 027 028 private String line1Address; 029 private String line2Address; 030 private String cityName; 031 private String zipCode; 032 private String stateCode; 033 private String countryCode; 034 private String internationalProvinceName; 035 private String attentionName; 036 private String campusCode; 037 private String yesNoWithBlankIndicator; 038 private String yesNoWithoutBlankIndicator; 039 private boolean hiddenIndicator; 040 private String phoneNumberNoValidation; 041 private String phoneNumberWithValidation; 042 private String genericUrlAddress; 043 private String vendorHeaderGeneratedIdentifier; // " sourceClassName="org.kuali.kfs.vnd.businessobject.VendorDetail" 044 // sourceAttributeName="vendorNumber"/> 045 private String vendorDetailAssignedIdentifier; // " sourceClassName="org.kuali.kfs.vnd.businessobject.VendorDetail" 046 // sourceAttributeName="vendorNumber"/> 047 048 /** 049 * Constructs a VendorAttributeReferenceDummy. 050 */ 051 public VendorGenericAttributes() { 052 super(); 053 } 054 055 /* 056 * WORKFLOW LABEL ATTRIBUTES BEGIN HERE 057 */ 058 059 public String getVendorDetailAssignedIdentifier() { 060 061 return vendorDetailAssignedIdentifier; 062 } 063 064 public void setVendorDetailAssignedIdentifier(String vendorDetailAssignedIdentifier) { 065 this.vendorDetailAssignedIdentifier = vendorDetailAssignedIdentifier; 066 } 067 068 public String getVendorHeaderGeneratedIdentifier() { 069 070 return vendorHeaderGeneratedIdentifier; 071 } 072 073 public void setVendorHeaderGeneratedIdentifier(String vendorHeaderGeneratedIdentifier) { 074 this.vendorHeaderGeneratedIdentifier = vendorHeaderGeneratedIdentifier; 075 } 076 077 /* 078 * WORKFLOW LABEL ATTRIBUTES END HERE 079 */ 080 081 public String getCampusCode() { 082 083 return campusCode; 084 } 085 086 public void setCampusCode(String campusCode) { 087 this.campusCode = campusCode; 088 } 089 090 public boolean isHiddenIndicator() { 091 092 return hiddenIndicator; 093 } 094 095 public void setHiddenIndicator(boolean hiddenIndicator) { 096 this.hiddenIndicator = hiddenIndicator; 097 } 098 099 public String getInternationalProvinceName() { 100 101 return internationalProvinceName; 102 } 103 104 public void setInternationalProvinceName(String internationalProvinceName) { 105 this.internationalProvinceName = internationalProvinceName; 106 } 107 108 public String getAttentionName() { 109 110 return attentionName; 111 } 112 113 public void setAttentionName(String attentionName) { 114 this.attentionName = attentionName; 115 } 116 117 public String getCityName() { 118 119 return cityName; 120 } 121 122 public void setCityName(String cityName) { 123 this.cityName = cityName; 124 } 125 126 public String getCountryCode() { 127 128 return countryCode; 129 } 130 131 public void setCountryCode(String countryCode) { 132 this.countryCode = countryCode; 133 } 134 135 public String getLine1Address() { 136 137 return line1Address; 138 } 139 140 public void setLine1Address(String line1Address) { 141 this.line1Address = line1Address; 142 } 143 144 public String getLine2Address() { 145 146 return line2Address; 147 } 148 149 public void setLine2Address(String line2Address) { 150 this.line2Address = line2Address; 151 } 152 153 public String getZipCode() { 154 155 return zipCode; 156 } 157 158 public void setZipCode(String zipCode) { 159 this.zipCode = zipCode; 160 } 161 162 public String getStateCode() { 163 164 return stateCode; 165 } 166 167 public void setStateCode(String stateCode) { 168 this.stateCode = stateCode; 169 } 170 171 public String getYesNoWithBlankIndicator() { 172 173 return yesNoWithBlankIndicator; 174 } 175 176 public void setYesNoWithBlankIndicator(String yesNoWithBlankIndicator) { 177 this.yesNoWithBlankIndicator = yesNoWithBlankIndicator; 178 } 179 180 public String getYesNoWithoutBlankIndicator() { 181 182 return yesNoWithoutBlankIndicator; 183 } 184 185 public void setYesNoWithoutBlankIndicator(String yesNoWithoutBlankIndicator) { 186 this.yesNoWithoutBlankIndicator = yesNoWithoutBlankIndicator; 187 } 188 189 public String getPhoneNumberNoValidation() { 190 191 return phoneNumberNoValidation; 192 } 193 194 public void setPhoneNumberNoValidation(String phoneNumberNoValidation) { 195 this.phoneNumberNoValidation = phoneNumberNoValidation; 196 } 197 198 public String getPhoneNumberWithValidation() { 199 200 return phoneNumberWithValidation; 201 } 202 203 public void setPhoneNumberWithValidation(String phoneNumberWithValidation) { 204 this.phoneNumberWithValidation = phoneNumberWithValidation; 205 } 206 207 public String getGenericUrlAddress() { 208 209 return genericUrlAddress; 210 } 211 212 public void setGenericUrlAddress(String genericUrlAddress) { 213 this.genericUrlAddress = genericUrlAddress; 214 } 215 216 217 }