Source Code Cross Referenced for PurApAttributeReferenceDummy.java in  » ERP-CRM-Financial » Kuali-Financial-System » org » kuali » module » purap » bo » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » ERP CRM Financial » Kuali Financial System » org.kuali.module.purap.bo 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Copyright 2006-2007 The Kuali Foundation.
003:         * 
004:         * Licensed under the Educational Community License, Version 1.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/ecl1.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.module.purap.bo;
017:
018:        import java.math.BigDecimal;
019:        import java.util.LinkedHashMap;
020:
021:        import org.kuali.core.bo.PersistableBusinessObjectBase;
022:        import org.kuali.core.util.KualiDecimal;
023:
024:        /**
025:         * Attribute Reference Dummy Business Object
026:         */
027:        public class PurApAttributeReferenceDummy extends
028:                PersistableBusinessObjectBase {
029:
030:            private Integer purapDocumentIdentifier;
031:            private String genericTime;
032:            private KualiDecimal genericItemQuantity;
033:            private KualiDecimal genericItemAmount;
034:            private Integer genericItemIdentifier;
035:            private BigDecimal genericItemUnitPrice;
036:            private String contractManager;
037:            private String organizationCode;
038:            private String chartOfAccountsCode;
039:            private String requisitionStatus;
040:            private String purchaseOrderStatus;
041:            private String paymentRequestStatus;
042:            private String creditMemoStatus;
043:            private String extractedDate;
044:            private String paymentPaidDate;
045:            private String creditMemoPaidTimestamp;
046:            private String purchaseOrderDocumentCurrentIndicator;
047:            private String statusCode;
048:            private String purchaseOrderAutomaticIndicator;
049:            private String requisitionIdentifier;
050:
051:            /**
052:             * Default constructor
053:             */
054:            public PurApAttributeReferenceDummy() {
055:            }
056:
057:            public String getCreditMemoPaidTimestamp() {
058:                return creditMemoPaidTimestamp;
059:            }
060:
061:            public void setCreditMemoPaidTimestamp(
062:                    String creditMemoPaidTimestamp) {
063:                this .creditMemoPaidTimestamp = creditMemoPaidTimestamp;
064:            }
065:
066:            public String getExtractedDate() {
067:                return extractedDate;
068:            }
069:
070:            public void setExtractedDate(String extractedDate) {
071:                this .extractedDate = extractedDate;
072:            }
073:
074:            public String getPaymentPaidDate() {
075:                return paymentPaidDate;
076:            }
077:
078:            public void setPaymentPaidDate(String paymentPaidDate) {
079:                this .paymentPaidDate = paymentPaidDate;
080:            }
081:
082:            public BigDecimal getGenericItemUnitPrice() {
083:                return genericItemUnitPrice;
084:            }
085:
086:            public void setGenericItemUnitPrice(BigDecimal genericItemUnitPrice) {
087:                this .genericItemUnitPrice = genericItemUnitPrice;
088:            }
089:
090:            public Integer getGenericItemIdentifier() {
091:                return genericItemIdentifier;
092:            }
093:
094:            public void setGenericItemIdentifier(Integer genericItemIdentifier) {
095:                this .genericItemIdentifier = genericItemIdentifier;
096:            }
097:
098:            public KualiDecimal getGenericItemQuantity() {
099:                return genericItemQuantity;
100:            }
101:
102:            public void setGenericItemQuantity(KualiDecimal genericItemQuantity) {
103:                this .genericItemQuantity = genericItemQuantity;
104:            }
105:
106:            public KualiDecimal getGenericItemAmount() {
107:                return genericItemAmount;
108:            }
109:
110:            public void setGenericItemAmount(KualiDecimal genericItemAmount) {
111:                this .genericItemAmount = genericItemAmount;
112:            }
113:
114:            public Integer getPurapDocumentIdentifier() {
115:                return purapDocumentIdentifier;
116:            }
117:
118:            public void setPurapDocumentIdentifier(
119:                    Integer purapDocumentIdentifier) {
120:                this .purapDocumentIdentifier = purapDocumentIdentifier;
121:            }
122:
123:            public String getGenericTime() {
124:                return genericTime;
125:            }
126:
127:            public void setGenericTime(String genericTime) {
128:                this .genericTime = genericTime;
129:            }
130:
131:            public String getContractManager() {
132:                return contractManager;
133:            }
134:
135:            public void setContractManager(String contractManager) {
136:                this .contractManager = contractManager;
137:            }
138:
139:            public String getOrganizationCode() {
140:                return organizationCode;
141:            }
142:
143:            public void setOrganizationCode(String organizationCode) {
144:                this .organizationCode = organizationCode;
145:            }
146:
147:            public String getChartOfAccountsCode() {
148:                return chartOfAccountsCode;
149:            }
150:
151:            public void setChartOfAccountsCode(String chartOfAccountsCode) {
152:                this .chartOfAccountsCode = chartOfAccountsCode;
153:            }
154:
155:            public String getCreditMemoStatus() {
156:                return creditMemoStatus;
157:            }
158:
159:            public void setCreditMemoStatus(String creditMemoStatus) {
160:                this .creditMemoStatus = creditMemoStatus;
161:            }
162:
163:            public String getPaymentRequestStatus() {
164:                return paymentRequestStatus;
165:            }
166:
167:            public void setPaymentRequestStatus(String paymentRequestStatus) {
168:                this .paymentRequestStatus = paymentRequestStatus;
169:            }
170:
171:            public String getPurchaseOrderStatus() {
172:                return purchaseOrderStatus;
173:            }
174:
175:            public void setPurchaseOrderStatus(String purchaseOrderStatus) {
176:                this .purchaseOrderStatus = purchaseOrderStatus;
177:            }
178:
179:            public String getRequisitionStatus() {
180:                return requisitionStatus;
181:            }
182:
183:            public void setRequisitionStatus(String requisitionStatus) {
184:                this .requisitionStatus = requisitionStatus;
185:            }
186:
187:            /**
188:             * @see org.kuali.core.bo.BusinessObjectBase#toStringMapper()
189:             */
190:            protected LinkedHashMap toStringMapper() {
191:                LinkedHashMap m = new LinkedHashMap();
192:
193:                m.put("hashCode", Integer.toHexString(hashCode()));
194:
195:                return m;
196:            }
197:
198:            public String getPurchaseOrderDocumentCurrentIndicator() {
199:                return purchaseOrderDocumentCurrentIndicator;
200:            }
201:
202:            public void setPurchaseOrderDocumentCurrentIndicator(
203:                    String purchaseOrderDocumentCurrentIndicator) {
204:                this .purchaseOrderDocumentCurrentIndicator = purchaseOrderDocumentCurrentIndicator;
205:            }
206:
207:            public String getStatusCode() {
208:                return statusCode;
209:            }
210:
211:            public void setStatusCode(String statusCode) {
212:                this .statusCode = statusCode;
213:            }
214:
215:            public String getPurchaseOrderAutomaticIndicator() {
216:                return purchaseOrderAutomaticIndicator;
217:            }
218:
219:            public void setPurchaseOrderAutomaticIndicator(
220:                    String purchaseOrderAutomaticIndicator) {
221:                this .purchaseOrderAutomaticIndicator = purchaseOrderAutomaticIndicator;
222:            }
223:
224:            public String getRequisitionIdentifier() {
225:                return requisitionIdentifier;
226:            }
227:
228:            public void setRequisitionIdentifier(String requisitionIdentifier) {
229:                this.requisitionIdentifier = requisitionIdentifier;
230:            }
231:
232:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.