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


java.lang.Object
   com.sun.ssoadapter.config.PSClientAwareContextFactory

PSClientAwareContextFactory
public class PSClientAwareContextFactory implements SessionListener(Code)
PSClientAwareContextFactory
This is the factory class for obtaining service objects stored in a Service definition - ex: DSAME Schema

Usage: Call the static method PSClientAwareContextFactory.getInstance() or PSClientAwareContextFactory.getInstance(String configContextClassName) A ConfigContext object is created using the configContextClassName. And the ConfigContext must return a valid pathname for Template base directory and a valid classname for creating the ClientAwareAppContext object. The default ConfigContext object is property file driven and uses the SAALContext.properties file.

Sample Code:

PSClientAwareContextFactory mapFac = null;
try {
  mapFac = PSClientAwareContextFactory.getInstance();
} catch (SAALException se) {
  // return to login page
   return;
}

//
// To get the global context (when session is not available)
//
ClientAwareAppContext caAppContext = null;
try {
  caAppContext = mapFac.getClientAwareAppContext();
} catch (SAALException se) {
  // return to login page
   return;
}

//
// To get a user specific context - pass in the SSOAdapterSession
//
try {
  ClientAwareUserContext caUserContext =    mapFac.getClientAwareUserContext(session);
} catch (IllegalStateException ie) {
  // return to login page
   return;
} catch (SAALException se) {
  // return to login page
   return;
}

Map serviceMap = new HashMap();
serviceMap.put ("serviceName", "DesktopMailService");
//
// The global attributes can be obtained using either the
// global context or the user context.
// Ex: When using a global context (without a session)
// Pass in the servicename (or any other) backend service
// specific requirements through the serviceMap
//
String mailConnectionPoolCacheSize = caAppContext.getStringAttribute (serviceMap, "cachesize");

//
// To get a user specific attribute's value
//
String mailUserName = caUserContext.getStringAttribute (serviceMap, "userName");

//
// Since the default behaviour of the API is to fetch
// User/Dynamic attributes, the serviceMap can be null.
//
String mailUserName = caUserContext.getStringAttribute (null, "userName");




Constructor Summary
protected  PSClientAwareContextFactory()
    

Method Summary
public synchronized  ClientAwareAppContextgetClientAwareAppContext()
     Get an instance of ClientAwareAppContext Object. This method uses the getClientAwareAppContextClassName() of ConfigContext object (created in getInstance()).
public  ClientAwareUserContextgetClientAwareUserContext(SSOAdapterSession session)
     Creates an ClientAwareUserContext Object. This method invokes the getClientAwareUserContextClassName() of the ClientAwareAppContext object.
public static  PSClientAwareContextFactorygetInstance()
     Get an instance of the factory using the default ConfigContext classname.
public static  PSClientAwareContextFactorygetInstance(String configContextClassName)
     Get an instance of the factory driven by the ConfigContext object created with configContextClassName.
public  voidsessionDestroyed(String sid)
     The ContextFactory caches the UserContexts internally using the session ids to improve performance.


Constructor Detail
PSClientAwareContextFactory
protected PSClientAwareContextFactory()(Code)




Method Detail
getClientAwareAppContext
public synchronized ClientAwareAppContext getClientAwareAppContext() throws SAALException(Code)
Get an instance of ClientAwareAppContext Object. This method uses the getClientAwareAppContextClassName() of ConfigContext object (created in getInstance()). And generates the object with the Class.forName(). The default ClassLoader and the CLASSPATH of the web-container will be used.
See Also:   ConfigContext
exception:
  SAALException - if the ClientAwareAppContext could not be created. (either because the implementation class could not beinstantiated or because, connection could not be establishishedwith the backend service provider).



getClientAwareUserContext
public ClientAwareUserContext getClientAwareUserContext(SSOAdapterSession session) throws IllegalStateException, SAALException(Code)
Creates an ClientAwareUserContext Object. This method invokes the getClientAwareUserContextClassName() of the ClientAwareAppContext object. And generates the object with the Class.forName(). The default ClassLoader and the CLASSPATH of the web-container will be used.
Parameters:
  session - The SSOAdapterSession A ClientAwareUserContext object.
exception:
  IllegalStateException - if the session is not valid.
exception:
  SAALException - if the ClientAwareUserContext could not be created. (either because the implementation class could not beinstantiated or because, connection could not be establishishedwith the backend service provider).



getInstance
public static PSClientAwareContextFactory getInstance() throws SAALException(Code)
Get an instance of the factory using the default ConfigContext classname. The default is com.sun.ssoadapter.config.PropertiesConfigContext. An instance of PSClientAwareContextFactory.
exception:
  SAALException - if the ClientAwareContextFactory object could not be created.



getInstance
public static PSClientAwareContextFactory getInstance(String configContextClassName) throws SAALException(Code)
Get an instance of the factory driven by the ConfigContext object created with configContextClassName. The ConfigContext class must be in the default web-containers CLASSPATH.
Parameters:
  configContextClassName - The classname to use, to create thethe ConfigContext object. An instance of PSClientAwareContextFactory.
See Also:   ConfigContext
exception:
  SAALException - if the ClientAwareContextFactory object could not be created.



sessionDestroyed
public void sessionDestroyed(String sid)(Code)
The ContextFactory caches the UserContexts internally using the session ids to improve performance. To clean up the contexts of timed-out/logged-out sessions the ContextFactory implements the Sessionlistener Object, and registers the ContextFactory object with the backend session provider using the ClientAwareUserContext: addSessionListener(SessionListener) method. When the session is invalidated the sessionDestroyed() of this object "CAN" be called by the implementation of the ClientAwareUserContext. This method removes the expired session from its cache


Parameters:
  sid - The session id




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.