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