Java Doc for MemoryIdentityStore.java in  » Authentication-Authorization » josso-1.7 » org » josso » gateway » identity » service » store » 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 » Authentication Authorization » josso 1.7 » org.josso.gateway.identity.service.store 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.josso.gateway.identity.service.store.AbstractStore
      org.josso.gateway.identity.service.store.MemoryIdentityStore

MemoryIdentityStore
public class MemoryIdentityStore extends AbstractStore (Code)
Memory based implementation of an IdentityStore and CredentialStore that reads data from XML files.
author:
   Sebastian Gonzalez Oyuela
version:
   $Id: MemoryIdentityStore.java 508 2008-02-18 13:32:29Z sgonzalez $



Constructor Summary
public  MemoryIdentityStore()
    

Method Summary
protected  voidaddCredential(CredentialKey key, Credential c)
    
protected  voidaddCredentials(CredentialKey key, Credential[] c)
    
public synchronized  voidassignRole(UserKey userKey, RoleKey roleKey)
    
protected  CredentialKeycreateCredentialKey(String name)
    
protected  BaseRolecreateRole(String name)
    
protected  RoleKeycreateRoleKey(BaseRole role)
    
protected  BaseUsercreateUser(String username)
    
protected  UserKeycreateUserKey(BaseUser user)
    
public synchronized  voiddeasignRole(UserKey userKey, RoleKey roleKey)
    
protected  CredentialdoMakeCredential(String name, Object value)
     Creates a credential for the specific value.
Parameters:
  name - the credential name (i.e.
public synchronized  BaseRolefindRoleByName(String name)
    
public synchronized  BaseRole[]findRolesByUserKey(UserKey key)
    
public  CredentialProvidergetCredentialProvider()
    
public  StringgetCredentialsFileName()
    
public synchronized  SetgetRoleKeys()
    
public synchronized  voidinitialize()
     Initializes the store, reads data from XML files.
protected  voidloadCredentialSet(Configuration config)
    
protected  Credential[]loadCredentials(Configuration config)
    
public  Credential[]loadCredentials(CredentialKey key)
     Gets configured credentials for this principal.
protected  voidloadCredentialsData(String fName)
     Loads credentials from file.
public synchronized  BaseRoleloadRole(RoleKey roleKey)
    
protected  voidloadRoles(Configuration config)
    
public synchronized  BaseUserloadUser(UserKey key)
    
protected  SSONameValuePair[]loadUserProperties(Configuration config)
    
protected  voidloadUsers(Configuration config)
    
protected  voidloadUsersData(String fName)
     Loads users from file.
public synchronized  voidremoveRole(RoleKey key)
    
public synchronized  voidremoveUser(UserKey key)
    
public synchronized  voidsaveRole(BaseRole role)
    
public synchronized  voidsaveUser(BaseUser user)
    
public  voidsetCredentialProvider(CredentialProvider credentialProvider)
    
public  voidsetCredentialsFileName(String credentialsFileName)
    
public  voidsetUsersFileName(String usersFileName)
    


Constructor Detail
MemoryIdentityStore
public MemoryIdentityStore()(Code)




Method Detail
addCredential
protected void addCredential(CredentialKey key, Credential c)(Code)



addCredentials
protected void addCredentials(CredentialKey key, Credential[] c)(Code)



assignRole
public synchronized void assignRole(UserKey userKey, RoleKey roleKey) throws SSOIdentityException(Code)



createCredentialKey
protected CredentialKey createCredentialKey(String name)(Code)



createRole
protected BaseRole createRole(String name)(Code)



createRoleKey
protected RoleKey createRoleKey(BaseRole role)(Code)



createUser
protected BaseUser createUser(String username)(Code)



createUserKey
protected UserKey createUserKey(BaseUser user)(Code)



deasignRole
public synchronized void deasignRole(UserKey userKey, RoleKey roleKey) throws SSOIdentityException(Code)



doMakeCredential
protected Credential doMakeCredential(String name, Object value) throws SSOIdentityException(Code)
Creates a credential for the specific value.
Parameters:
  name - the credential name (i.e. username, password, challenge, etc.)
Parameters:
  value -



findRoleByName
public synchronized BaseRole findRoleByName(String name) throws SSOIdentityException(Code)



findRolesByUserKey
public synchronized BaseRole[] findRolesByUserKey(UserKey key) throws SSOIdentityException(Code)

Parameters:
  key -
throws:
  SSOIdentityException -



getCredentialProvider
public CredentialProvider getCredentialProvider()(Code)



getCredentialsFileName
public String getCredentialsFileName()(Code)



getRoleKeys
public synchronized Set getRoleKeys() throws SSOIdentityException(Code)



initialize
public synchronized void initialize()(Code)
Initializes the store, reads data from XML files.



loadCredentialSet
protected void loadCredentialSet(Configuration config) throws Exception(Code)



loadCredentials
protected Credential[] loadCredentials(Configuration config) throws Exception(Code)



loadCredentials
public Credential[] loadCredentials(CredentialKey key) throws SSOIdentityException(Code)
Gets configured credentials for this principal.
Parameters:
  key - used to retrieve this credentials.
throws:
  SSOIdentityException -



loadCredentialsData
protected void loadCredentialsData(String fName) throws Exception(Code)
Loads credentials from file.
Parameters:
  fName - the file containing user definitions.



loadRole
public synchronized BaseRole loadRole(RoleKey roleKey) throws NoSuchRoleException, SSOIdentityException(Code)



loadRoles
protected void loadRoles(Configuration config)(Code)



loadUser
public synchronized BaseUser loadUser(UserKey key) throws NoSuchUserException, SSOIdentityException(Code)



loadUserProperties
protected SSONameValuePair[] loadUserProperties(Configuration config)(Code)



loadUsers
protected void loadUsers(Configuration config) throws Exception(Code)



loadUsersData
protected void loadUsersData(String fName) throws Exception(Code)
Loads users from file.
Parameters:
  fName - the file containing user definitions.



removeRole
public synchronized void removeRole(RoleKey key) throws NoSuchRoleException, SSOIdentityException(Code)



removeUser
public synchronized void removeUser(UserKey key) throws NoSuchUserException, SSOIdentityException(Code)



saveRole
public synchronized void saveRole(BaseRole role) throws SSOIdentityException(Code)



saveUser
public synchronized void saveUser(BaseUser user) throws SSOIdentityException(Code)



setCredentialProvider
public void setCredentialProvider(CredentialProvider credentialProvider)(Code)



setCredentialsFileName
public void setCredentialsFileName(String credentialsFileName)(Code)



setUsersFileName
public void setUsersFileName(String usersFileName)(Code)



Methods inherited from org.josso.gateway.identity.service.store.AbstractStore
protected AuthenticationScheme getAuthenticationScheme()(Code)(Java Doc)
public void setAuthenticationScheme(AuthenticationScheme as)(Code)(Java Doc)
public boolean userExists(UserKey key) throws SSOIdentityException(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

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