Source Code Cross Referenced for DocumentRouteLevelChange.java in  » ERP-CRM-Financial » Kuali-Financial-System » edu » iu » uis » eden » 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 » edu.iu.uis.eden 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package edu.iu.uis.eden;
002:
003:        /**
004:         * <p><Title> </p>
005:         * <p><Description> </p>
006:         * <p><p><p>Copyright: Copyright (c) 2002</p>
007:         * <p><p>Company: UIS - Indiana University</p>
008:         * @author <a href="mailto:seiffert@indiana.edu">Kurt A. Seiffert</a>
009:         * @version $Revision: 1.3 $ - $Date: 2007/01/04 19:21:01 $
010:         */
011:        public class DocumentRouteLevelChange implements  IDocumentEvent {
012:
013:            // TODO for now we will include the new node-based routing fields onto this object to avoid an interface
014:            // change to the PostProcessor interface.
015:
016:            private static final long serialVersionUID = 785552701611174468L;
017:
018:            private Long routeHeaderId;
019:            private String appDocId;
020:            private Integer oldRouteLevel;
021:            private Integer newRouteLevel;
022:            private String oldNodeName;
023:            private String newNodeName;
024:            private Long oldNodeInstanceId;
025:            private Long newNodeInstanceId;
026:
027:            //  this constructor is for backwards compatibility
028:            public DocumentRouteLevelChange(Long routeHeaderId,
029:                    String appDocId, Integer oldRouteLevel,
030:                    Integer newRouteLevel) {
031:                this (routeHeaderId, appDocId, oldRouteLevel, newRouteLevel,
032:                        null, null, null, null);
033:            }
034:
035:            public DocumentRouteLevelChange(Long routeHeaderId,
036:                    String appDocId, Integer oldRouteLevel,
037:                    Integer newRouteLevel, String oldNodeName,
038:                    String newNodeName, Long oldNodeInstanceId,
039:                    Long newNodeInstanceId) {
040:                this .routeHeaderId = routeHeaderId;
041:                this .oldRouteLevel = oldRouteLevel;
042:                this .newRouteLevel = newRouteLevel;
043:                this .oldNodeName = oldNodeName;
044:                this .newNodeName = newNodeName;
045:                this .oldNodeInstanceId = oldNodeInstanceId;
046:                this .newNodeInstanceId = newNodeInstanceId;
047:                this .appDocId = appDocId;
048:            }
049:
050:            public String getDocumentEventCode() {
051:                return ROUTE_LEVEL_CHANGE;
052:            }
053:
054:            public Long getRouteHeaderId() {
055:                return routeHeaderId;
056:            }
057:
058:            public Integer getOldRouteLevel() {
059:                return oldRouteLevel;
060:            }
061:
062:            public Integer getNewRouteLevel() {
063:                return newRouteLevel;
064:            }
065:
066:            public Long getNewNodeInstanceId() {
067:                return newNodeInstanceId;
068:            }
069:
070:            public String getNewNodeName() {
071:                return newNodeName;
072:            }
073:
074:            public Long getOldNodeInstanceId() {
075:                return oldNodeInstanceId;
076:            }
077:
078:            public String getOldNodeName() {
079:                return oldNodeName;
080:            }
081:
082:            public String toString() {
083:                StringBuffer buffer = new StringBuffer();
084:                buffer.append("RouteHeaderID ").append(routeHeaderId);
085:                buffer.append(" changing from routeLevel ").append(
086:                        oldRouteLevel);
087:                buffer.append(" to routeLevel ").append(newRouteLevel);
088:
089:                return buffer.toString();
090:            }
091:
092:            /**
093:             * @return
094:             */
095:            public String getAppDocId() {
096:                return appDocId;
097:            }
098:        }
099:
100:        /*
101:         * Copyright 2003 The Trustees of Indiana University.  All rights reserved.
102:         *
103:         * This file is part of the EDEN software package.
104:         * For license information, see the LICENSE file in the top level directory
105:         * of the EDEN source distribution.
106:         */
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.