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


edu.iu.uis.eden.engine.node.RouteNodeService

All known Subclasses:   edu.iu.uis.eden.engine.node.RouteNodeServiceImpl,
RouteNodeService
public interface RouteNodeService (Code)
A service which provides data access for RouteNode , RouteNodeInstance , NodeState , and Branch objects.
author:
   ewestfal
author:
   rkirkend




Method Summary
public  voiddeleteByRouteNodeInstance(RouteNodeInstance routeNodeInstance)
    
public  voiddeleteNodeStateById(Long nodeStateId)
    
public  voiddeleteNodeStates(List statesToBeDeleted)
    
public  ListfindFinalApprovalRouteNodes(Long documentTypeId)
    
public  SetfindFutureNodeNames(Long documentId)
    
public  ListfindNextRouteNodesInPath(RouteNodeInstance nodeInstance, String nodeName)
    
public  NodeStatefindNodeState(Long nodeInstanceId, String key)
    
public  SetfindPreviousNodeNames(Long documentId)
    
public  ListfindProcessNodeInstances(RouteNodeInstance process)
    
public  RouteNodefindRouteNodeById(Long nodeId)
    
public  RouteNodefindRouteNodeByName(Long documentTypeId, String name)
    
public  RouteNodeInstancefindRouteNodeInstanceById(Long nodeInstanceId)
    
public  ListfindRouteNodeInstances(Long documentId)
    
public  ListgetActiveNodeInstances(Long documentId)
     Retrieves the active node instances of the given Document.
public  ListgetActiveNodeInstances(DocumentRouteHeaderValue document)
    
public  ListgetActiveNodeInstances(DocumentRouteHeaderValue document, String nodeName)
    
public  ListgetCurrentNodeInstances(Long documentId)
     Returns the node instances representing the most recent node instances in the document.
public  ListgetFlattenedNodeInstances(DocumentRouteHeaderValue document, boolean includeProcesses)
     Returns a flattened list of RouteNodeInstances on the given document.
public  ListgetFlattenedNodes(DocumentType documentType, boolean climbHierarchy)
     Flatten all the document types route nodes into a single List.
public  ListgetFlattenedNodes(Process process)
    
public  ListgetInitialNodeInstances(Long documentId)
     Retrieves the initial node instances of the given document.
public  ListgetRevokedNodeInstances(DocumentRouteHeaderValue document)
     Returns a List of the revoked RouteNodeInstances on the given Document.
public  ListgetTerminalNodeInstances(Long documentId)
     Retrieves the terminal node instances of the given Document.
public  booleanisNodeInPath(DocumentRouteHeaderValue document, String nodeName)
    
public  voidrevokeNodeInstance(DocumentRouteHeaderValue document, RouteNodeInstance nodeInstance)
     Record that the given RouteNodeInstance on the Document was revoked.
public  voidsave(RouteNode node)
    
public  voidsave(RouteNodeInstance nodeInstance)
    
public  voidsave(NodeState nodeState)
    
public  voidsave(Branch branch)
    
public  NodeGraphSearchResultsearchNodeGraph(NodeGraphSearchCriteria criteria)
    



Method Detail
deleteByRouteNodeInstance
public void deleteByRouteNodeInstance(RouteNodeInstance routeNodeInstance)(Code)



deleteNodeStateById
public void deleteNodeStateById(Long nodeStateId)(Code)



deleteNodeStates
public void deleteNodeStates(List statesToBeDeleted)(Code)



findFinalApprovalRouteNodes
public List findFinalApprovalRouteNodes(Long documentTypeId)(Code)



findFutureNodeNames
public Set findFutureNodeNames(Long documentId)(Code)



findNextRouteNodesInPath
public List findNextRouteNodesInPath(RouteNodeInstance nodeInstance, String nodeName)(Code)



findNodeState
public NodeState findNodeState(Long nodeInstanceId, String key)(Code)



findPreviousNodeNames
public Set findPreviousNodeNames(Long documentId)(Code)



findProcessNodeInstances
public List findProcessNodeInstances(RouteNodeInstance process)(Code)



findRouteNodeById
public RouteNode findRouteNodeById(Long nodeId)(Code)



findRouteNodeByName
public RouteNode findRouteNodeByName(Long documentTypeId, String name)(Code)



findRouteNodeInstanceById
public RouteNodeInstance findRouteNodeInstanceById(Long nodeInstanceId)(Code)



findRouteNodeInstances
public List findRouteNodeInstances(Long documentId)(Code)



getActiveNodeInstances
public List getActiveNodeInstances(Long documentId)(Code)
Retrieves the active node instances of the given Document. The active node instances represent where in the route path the document is currently located.



getActiveNodeInstances
public List getActiveNodeInstances(DocumentRouteHeaderValue document)(Code)



getActiveNodeInstances
public List getActiveNodeInstances(DocumentRouteHeaderValue document, String nodeName)(Code)
Returns a list of active node instances associated with the document that are active
Parameters:
  document -
Parameters:
  nodeName -



getCurrentNodeInstances
public List getCurrentNodeInstances(Long documentId)(Code)
Returns the node instances representing the most recent node instances in the document. The algorithm for locating the current nodes is as follows: If the document has active node instances, return those, otherwise return it's terminal node instances.



getFlattenedNodeInstances
public List getFlattenedNodeInstances(DocumentRouteHeaderValue document, boolean includeProcesses)(Code)
Returns a flattened list of RouteNodeInstances on the given document. If the includeProcesses flag is true than this method includes process RouteNodeInstances, otherwise they are excluded. which are processes.



getFlattenedNodes
public List getFlattenedNodes(DocumentType documentType, boolean climbHierarchy)(Code)
Flatten all the document types route nodes into a single List. This includes all processes on the DocumentType.
Parameters:
  documentType - DocumentType who's nodes will be flattened.
Parameters:
  climbHierarchy - whether to include the parents nodes if the passed in DocumentType contains no nodes List or empty List



getFlattenedNodes
public List getFlattenedNodes(Process process)(Code)



getInitialNodeInstances
public List getInitialNodeInstances(Long documentId)(Code)
Retrieves the initial node instances of the given document. The initial node instances are those node instances which are at the very beginning of the route. Usually, this will just be a single node instance.



getRevokedNodeInstances
public List getRevokedNodeInstances(DocumentRouteHeaderValue document)(Code)
Returns a List of the revoked RouteNodeInstances on the given Document.
See Also:   revokeNodeInstance



getTerminalNodeInstances
public List getTerminalNodeInstances(Long documentId)(Code)
Retrieves the terminal node instances of the given Document. The terminal node instances are nodes in the route path which are both inactive and complete and have no next nodes in their path. Terminal node instances will typically only exist on documents which are no longer Enroute.



isNodeInPath
public boolean isNodeInPath(DocumentRouteHeaderValue document, String nodeName)(Code)



revokeNodeInstance
public void revokeNodeInstance(DocumentRouteHeaderValue document, RouteNodeInstance nodeInstance)(Code)
Record that the given RouteNodeInstance on the Document was revoked. This will happen when an action such as Return to Previous or Move Document bypasses the given RouteNodeInstance on it's path back to a previous point in the history of the document's route path.



save
public void save(RouteNode node)(Code)



save
public void save(RouteNodeInstance nodeInstance)(Code)



save
public void save(NodeState nodeState)(Code)



save
public void save(Branch branch)(Code)



searchNodeGraph
public NodeGraphSearchResult searchNodeGraph(NodeGraphSearchCriteria criteria)(Code)



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.