Java Doc for SSOAdapter.java in  » Portal » Open-Portal » com » sun » ssoadapter » 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 » Portal » Open Portal » com.sun.ssoadapter 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


com.sun.ssoadapter.SSOAdapter

All known Subclasses:   com.sun.ssoadapter.AbstractSSOAdapter,
SSOAdapter
public interface SSOAdapter extends SSOAdapterConstants,SSOTokenListener(Code)
This interface describes an object that implements SSOAdapter functionality.

The primary purpose of an SSOAdapter is to provide SSO enablement of servlet based middleware, in regards to access to back-end services, e.g., mail, calendar, or addressbook.

An SSOAdapter acts as a bridge between the DSAME authentication and sessioning mechanism and whatever authentication and sessioning mechanism is employed by a particular back-end service.
version:
   1.0
See Also:   com.sun.ssoadapter.SSOAdapterFactory
See Also:   com.sun.ssoadapter.SSOAdapterException





Method Summary
public  booleancloseConnection()
     Adapter specific Connection termination.
public  ObjectgetConnection()
     Adapter specific Connection.
public  ListgetEncodedPropertiesList()
     A List of the encoded Properties Keys.
public  StringgetName()
     Returns the Name of this SSOAdapter.
public  PropertiesgetProperties()
     Returns the Properties bound to this SSOAdapter.
public  SSOTokengetSSOToken()
     Returns the SSOToken bound to this SSOAdapter.
public  ListgetUserPropertiesList()
     A List of the user Properties Keys.
public  voidinit(String adapterName, SSOToken token, Properties adapterProperties, List userPropertiesList, List encodedPropertiesList, Locale locale)
     Performs SSOAdapter initialization.
public  booleanisAdminProperty(String propertyKey)
    
public  booleanisEncodedProperty(String propertyKey)
    
public  booleanisUserProperty(String propertyKey)
    
public  voidssoTokenChanged(SSOTokenEvent evt)
     Implements SSOTokenListener "ssoTokenChanged" method.



Method Detail
closeConnection
public boolean closeConnection()(Code)
Adapter specific Connection termination. true on success , false otherwise



getConnection
public Object getConnection()(Code)
Adapter specific Connection. It typically returns the MailStore for JavaMailSSOAdapter This can be any Object like JavaMailStore



getEncodedPropertiesList
public List getEncodedPropertiesList()(Code)
A List of the encoded Properties Keys. The values are available in getProperties the List containing EncodedProperties keys.
since:
   Portal 7



getName
public String getName()(Code)
Returns the Name of this SSOAdapter. The Name of this Adapter



getProperties
public Properties getProperties()(Code)
Returns the Properties bound to this SSOAdapter. A list of properties which are set



getSSOToken
public SSOToken getSSOToken() throws SSOAdapterException(Code)
Returns the SSOToken bound to this SSOAdapter.
throws:
  com.sun.ssoadapter.SSOAdapterException - Exception if fails The SSOToken



getUserPropertiesList
public List getUserPropertiesList()(Code)
A List of the user Properties Keys. The values are available in getProperties the List containing UserProperties keys.
since:
   Portal 7



init
public void init(String adapterName, SSOToken token, Properties adapterProperties, List userPropertiesList, List encodedPropertiesList, Locale locale) throws SSOAdapterException(Code)
Performs SSOAdapter initialization.

When an SSOAdapter is instantiated by an SSOAdapterFactory, this method is invoked immediately following object creation.

The init() method should not be used to perform any sort of authencation nor should it establish a connection with any backend service.

The init() method is only invoked once during the lifetime of an SSOAdapter.
Parameters:
  userPropertiesList - the list with userPropertie's keys as Strings
Parameters:
  encodedPropertiesList - A list of encodedPropertie's keys as String
Parameters:
  locale - The locale
Parameters:
  adapterName - Used to identify the SSOAdapter
Parameters:
  token - Used to identify the user on who's behalf the request isbeing processed.
Parameters:
  adapterProperties - Contains the adapter information that will drivethe operation of this instance of an SSOAdapter.
throws:
  com.sun.ssoadapter.SSOAdapterException - If fails




isAdminProperty
public boolean isAdminProperty(String propertyKey)(Code)
if this property can be configured only by Admin returns true else false
Parameters:
  propertyKey - the key you want to test true if it is a admin Property else false
since:
   Portal 7



isEncodedProperty
public boolean isEncodedProperty(String propertyKey)(Code)
If this is a Encoded property returns true else false
Parameters:
  propertyKey - the key you want to test true if it is a EncodedProperty else false
since:
   Portal 7



isUserProperty
public boolean isUserProperty(String propertyKey)(Code)
If the sepcified Property is a User configurable it will return true else false
Parameters:
  propertyKey - the key you want to check true if the argument is a UserProperty else false
since:
   Portal 7



ssoTokenChanged
public void ssoTokenChanged(SSOTokenEvent evt)(Code)
Implements SSOTokenListener "ssoTokenChanged" method.
See Also:   com.iplanet.sso.SSOTokenListener
Parameters:
  evt - This is passed by AM with clean if evtType != evt.SSO_TOKEN_DESTROY || evtType != evt.SSO_TOKEN_IDLE_TIMEOUT || evtType != evt.SSO_TOKEN_MAX_TIMEOUT



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