Java Doc for UserGroupManagerAdmin.java in  » Workflow-Engines » shark » org » enhydra » shark » api » admin » 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 » Workflow Engines » shark » org.enhydra.shark.api.admin 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.enhydra.shark.api.admin.UserGroupManagerAdmin

All known Subclasses:   org.enhydra.shark.usergroup.DODSUserGroupManagerAdmin,  org.enhydra.shark.ws.UserGroupManagerAdminWrapper,
UserGroupManagerAdmin
public interface UserGroupManagerAdmin extends UserGroupManager(Code)
UserGroupManager handles users and groups and their relations in Shark.
author:
   Sasa Bojanic, Vladimir Puskas, Tanja Jovanovic




Method Summary
 voidaddGroupToGroup(String groupName, String subgroupName)
     Adds an existing group subgroupName to the group groupName.
 voidaddUserToGroup(String groupName, String username)
     Adds an existing user with a given username to the given group.
 voidcreateGroup(String groupName, String description)
     Creates a new user group.
 voidcreateUser(String groupName, String username, String password, String firstName, String lastName, String emailAddress)
     Allows administrator to create new user.
 voidmoveGroup(String currentParentGroup, String newParentGroup, String subgroupName)
     Moves group subgroupName from the group currentParentGroup to group newParentGroup.
 voidmoveUser(String currentGroup, String newGroup, String username)
     Moves user username from the group currentGroup to group newGroup.
 voidremoveGroup(String groupName)
     Removes user group.
 voidremoveGroupFromGroup(String groupName, String subgroupName)
     Removes group subgroupName from the group groupName.
 voidremoveGroupTree(String groupName)
     Deletes group groupName and all its child groups that don't belong to any other group except this one.
 voidremoveUser(String username)
     Allows administrator to remove the user.
 voidremoveUserFromGroup(String groupName, String username)
     Removes the user from the group.
 voidremoveUsersFromGroupTree(String groupName)
     Removes all users from group group that don't belong to any other group except this one.
 voidsetPassword(String username, String password)
     Sets user password.
 voidupdateGroup(String groupName, String description)
     Allows administrator to update data about group.
 voidupdateUser(String username, String firstName, String lastName, String emailAddress)
     Allows administrator to update data about user.



Method Detail
addGroupToGroup
void addGroupToGroup(String groupName, String subgroupName) throws Exception(Code)
Adds an existing group subgroupName to the group groupName.
Parameters:
  groupName - name of the given group.
Parameters:
  subgroupName - name of the given subgroup to be added.
throws:
  Exception - If something unexpected happens.



addUserToGroup
void addUserToGroup(String groupName, String username) throws Exception(Code)
Adds an existing user with a given username to the given group.
Parameters:
  groupName - name of the given group.
Parameters:
  username - username used to uniquely identify shark user.
throws:
  Exception - If something unexpected happens.



createGroup
void createGroup(String groupName, String description) throws Exception(Code)
Creates a new user group.
Parameters:
  groupName - name of the given group.
Parameters:
  description - group description.
throws:
  Exception - If something unexpected happens.



createUser
void createUser(String groupName, String username, String password, String firstName, String lastName, String emailAddress) throws Exception(Code)
Allows administrator to create new user. After its creation, the client application will always be able to log onto shark using username and password defined for the user.
Parameters:
  groupName - groupName used to uniquely identify group -this parameter is mandatory.
Parameters:
  username - username used to uniquely identify user -this parameter is mandatory.
Parameters:
  password - password used to authenticate -this parameter is mandatory.
Parameters:
  firstName - the user's first name.
Parameters:
  lastName - the user's last name.
Parameters:
  emailAddress - email address of the user.
throws:
  Exception - If something unexpected happens (i.e the user withgiven username already exists).



moveGroup
void moveGroup(String currentParentGroup, String newParentGroup, String subgroupName) throws Exception(Code)
Moves group subgroupName from the group currentParentGroup to group newParentGroup.
Parameters:
  currentParentGroup - current group that contains group subgroupName.
Parameters:
  newParentGroup - new group where group subgroupName will be moved to.
Parameters:
  subgroupName - subgroup that will be moved.
throws:
  Exception - If something unexpected happens.



moveUser
void moveUser(String currentGroup, String newGroup, String username) throws Exception(Code)
Moves user username from the group currentGroup to group newGroup.
Parameters:
  currentGroup - current group that contains the user.
Parameters:
  newGroup - new group where the user will be moved to.
Parameters:
  username - the user that will be moved.
throws:
  Exception - If something unexpected happens.



removeGroup
void removeGroup(String groupName) throws Exception(Code)
Removes user group.
Parameters:
  groupName - name of the given group.
throws:
  Exception - If something unexpected happens.



removeGroupFromGroup
void removeGroupFromGroup(String groupName, String subgroupName) throws Exception(Code)
Removes group subgroupName from the group groupName.
Parameters:
  groupName - name of the given group.
Parameters:
  subgroupName - name of the given subgroup to be removed.
throws:
  Exception - If something unexpected happens.



removeGroupTree
void removeGroupTree(String groupName) throws Exception(Code)
Deletes group groupName and all its child groups that don't belong to any other group except this one.
Parameters:
  groupName - name of the given group.
throws:
  Exception - If something unexpected happens.



removeUser
void removeUser(String username) throws Exception(Code)
Allows administrator to remove the user.
Parameters:
  username - username used to uniquely identify user.
throws:
  Exception - If something unexpected happens (i.e the user withgiven username does not exist, or this is a user that can't be removed).



removeUserFromGroup
void removeUserFromGroup(String groupName, String username) throws Exception(Code)
Removes the user from the group.
Parameters:
  groupName - name of the given group.
Parameters:
  username - username used to uniquely identify shark user.
throws:
  Exception - If something unexpected happens.



removeUsersFromGroupTree
void removeUsersFromGroupTree(String groupName) throws Exception(Code)
Removes all users from group group that don't belong to any other group except this one.
Parameters:
  groupName - name of the given group.
throws:
  Exception - If something unexpected happens.



setPassword
void setPassword(String username, String password) throws Exception(Code)
Sets user password.
Parameters:
  username - username of the shark user.
Parameters:
  password - new password of the shark user.
throws:
  Exception - If something unexpected happens.



updateGroup
void updateGroup(String groupName, String description) throws Exception(Code)
Allows administrator to update data about group.
Parameters:
  groupName - name of the given group.
Parameters:
  description - group description.
throws:
  Exception - If something unexpected happens.



updateUser
void updateUser(String username, String firstName, String lastName, String emailAddress) throws Exception(Code)
Allows administrator to update data about user.
Parameters:
  username - username used to uniquely identify user -this parameter is mandatory.
Parameters:
  firstName - the user's first name.
Parameters:
  lastName - the user's last name.
Parameters:
  emailAddress - email address of the user.
throws:
  Exception - If something unexpected happens (i.e the user withgiven username does not exist).



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