View Javadoc

1   /*
2    * Copyright 2007-2008 The Kuali Foundation
3    * 
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * 
8    * http://www.opensource.org/licenses/ecl2.php
9    * 
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package edu.sampleu.financial.bo;
17  
18  import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
19  
20  
21  /**
22   * Attribute Reference Dummy Business Object for Vendor attributes
23   */
24  public class VendorGenericAttributes extends PersistableBusinessObjectBase {
25  
26      private String line1Address;
27      private String line2Address;
28      private String cityName;
29      private String zipCode;
30      private String stateCode;
31      private String countryCode;
32      private String internationalProvinceName;
33      private String attentionName;
34      private String campusCode;
35      private String yesNoWithBlankIndicator;
36      private String yesNoWithoutBlankIndicator;
37      private boolean hiddenIndicator;
38      private String phoneNumberNoValidation;
39      private String phoneNumberWithValidation;
40      private String genericUrlAddress;
41      private String vendorHeaderGeneratedIdentifier; // " sourceClassName="org.kuali.kfs.vnd.businessobject.VendorDetail"
42      // sourceAttributeName="vendorNumber"/>
43      private String vendorDetailAssignedIdentifier; // " sourceClassName="org.kuali.kfs.vnd.businessobject.VendorDetail"
44      // sourceAttributeName="vendorNumber"/>
45  
46      /**
47       * Constructs a VendorAttributeReferenceDummy.
48       */
49      public VendorGenericAttributes() {
50          super();
51      }
52  
53      /*
54       * WORKFLOW LABEL ATTRIBUTES BEGIN HERE
55       */
56  
57      public String getVendorDetailAssignedIdentifier() {
58  
59          return vendorDetailAssignedIdentifier;
60      }
61  
62      public void setVendorDetailAssignedIdentifier(String vendorDetailAssignedIdentifier) {
63          this.vendorDetailAssignedIdentifier = vendorDetailAssignedIdentifier;
64      }
65  
66      public String getVendorHeaderGeneratedIdentifier() {
67  
68          return vendorHeaderGeneratedIdentifier;
69      }
70  
71      public void setVendorHeaderGeneratedIdentifier(String vendorHeaderGeneratedIdentifier) {
72          this.vendorHeaderGeneratedIdentifier = vendorHeaderGeneratedIdentifier;
73      }
74  
75      /*
76       * WORKFLOW LABEL ATTRIBUTES END HERE
77       */
78  
79      public String getCampusCode() {
80  
81          return campusCode;
82      }
83  
84      public void setCampusCode(String campusCode) {
85          this.campusCode = campusCode;
86      }
87  
88      public boolean isHiddenIndicator() {
89  
90          return hiddenIndicator;
91      }
92  
93      public void setHiddenIndicator(boolean hiddenIndicator) {
94          this.hiddenIndicator = hiddenIndicator;
95      }
96  
97      public String getInternationalProvinceName() {
98  
99          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 }