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


edu.iu.uis.eden.user.UserService

All known Subclasses:   edu.iu.uis.eden.user.PluginTestUserService,  edu.iu.uis.eden.user.BaseUserService,
UserService
public interface UserService extends XmlLoader(Code)
The UserService provides retrieval and search capibilities for WorkflowUsers. It also provides the a factory method for creating blank users. The UserService extends XmlLoader so it is possible to import users from XML if the implementing class provides an xml loading implementation.
author:
   bmcgough
author:
   rkirkend
author:
   ewestfal




Method Summary
public  WorkflowUsercopy(WorkflowUser user, boolean preserveKeys)
     Make a copy of the given WorkflowUser.
public  WorkflowUsergetBlankUser()
     Returns an empty WorkflowUser object.
public  UserCapabilitiesgetCapabilities()
     Retrieves the capabilities of this user service.
public  WorkflowUsergetWorkflowUser(UserId userId)
     Retrieve the WorkflowUser who has the supplied UserId.
public  WorkflowUsergetWorkflowUser(UserIdVO userId)
     Similar to getWorkflowUser(UserId) except that the id is represented as a UserIdVO instead of a UserId.
public  voidsave(WorkflowUser user)
     Saves the given WorkflowUser to the underlying data store.
public  List<WorkflowUser>search(WorkflowUser user, boolean useWildCards)
     Invokes a search for WorkflowUsers using an example user object as the search criteria.



Method Detail
copy
public WorkflowUser copy(WorkflowUser user, boolean preserveKeys)(Code)
Make a copy of the given WorkflowUser. If preserveKeys is true then the keys need to be preserved, otherwise they should be set to null on the copy. This code can assume that the user being passed in was produced by this service. Therefore, the user instance passed in can be safely cast to the appropriate implementation class if necessary.
since:
   2.2



getBlankUser
public WorkflowUser getBlankUser()(Code)
Returns an empty WorkflowUser object. Since the WorkflowUser implementation is institution-specific this method allows for the creation of a new WorkflowUser instance. This will typically be used in conjuction with the search method. an empty WorkflowUser object



getCapabilities
public UserCapabilities getCapabilities()(Code)
Retrieves the capabilities of this user service. This essentially provides the core with information on the kinds of activities which the User service can perform such as reporting, editing, etc. This is primarily used by the web-tier of the application to aid in delivery of web-based user services.
since:
   2.2



getWorkflowUser
public WorkflowUser getWorkflowUser(UserId userId) throws EdenUserNotFoundException(Code)
Retrieve the WorkflowUser who has the supplied UserId. If the user does not have a WorkflowId assigned, assign the user a WorkflowId before returning the WorkflowUser object
Parameters:
  the - UserId of the user to lookup the user which matches the given id if no user could be found
throws:
  EdenUserNotFoundException - if no user could be located for the given id or ifthe given UserId is of an invalid type



getWorkflowUser
public WorkflowUser getWorkflowUser(UserIdVO userId) throws EdenUserNotFoundException(Code)
Similar to getWorkflowUser(UserId) except that the id is represented as a UserIdVO instead of a UserId.
Parameters:
  the - UserIdVO of the user to lookup the user which matches the given id or null if no user could be found
throws:
  EdenUserNotFoundException - if no user could be located for the given id or ifthe given UserId is of an invalid type



save
public void save(WorkflowUser user)(Code)
Saves the given WorkflowUser to the underlying data store. If this service does not support persistence then an UnsupportedOperationException will be thrown.
since:
   2.2



search
public List<WorkflowUser> search(WorkflowUser user, boolean useWildCards)(Code)
Invokes a search for WorkflowUsers using an example user object as the search criteria.
Parameters:
  user - a WorkflowUser object containing an example user to search for, this will usuallyconsist of a user object with some of the fields filled in
Parameters:
  useWildCards - if true then wildcards should be used on the various WorkflowUser fields a List of WorkflowUsers which match the given criteria



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