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


01:        /**
02:         * $$ 
03:         * Copyright 2004 Sun Microsystems, Inc. All
04:         * rights reserved. Use of this product is subject
05:         * to license terms. Federal Acquisitions:
06:         * Commercial Software -- Government Users
07:         * Subject to Standard License Terms and
08:         * Conditions.
09:         *
10:         * Sun, Sun Microsystems, the Sun logo, and Sun ONE
11:         * are trademarks or registered trademarks of Sun Microsystems,
12:         * Inc. in the United States and other countries.
13:         */package com.sun.ssoadapter.mbeans;
14:
15:        import java.util.List;
16:        import java.util.Map;
17:        import java.util.Properties;
18:
19:        import com.sun.portal.admin.common.util.AdminUtil;
20:        import com.sun.portal.admin.common.PSMBeanException;
21:
22:        public interface SSOAdapterMBean {
23:            // Global DN string to be used to access global configurations
24:            public static final String GLOBAL_DN = "_!global!_";
25:
26:            // Type definition set in the AdminUtil
27:            public static final String TYPE = AdminUtil.SSOADAPTER_MBEAN_TYPE;
28:
29:            // Return a list of all the template names available
30:            public List getTemplateNames() throws PSMBeanException;
31:
32:            // Return a map of property names and their values for a template
33:            // The map of the template contains:
34:            //     attribute names and values for default properties,
35:            //     an attribute named "merge" whos value is a List of merge properties,
36:            //     an attribute named "encoded" whos value is a List of encoded properties.
37:            public Map getTemplateProperties(String name)
38:                    throws PSMBeanException;
39:
40:            // Set properties of a template, replacing the current properties
41:            // The map of the template contains:
42:            //     attribute names and values for default properties,
43:            //     an attribute named "merge" whos value is a List of merge properties,
44:            //     an attribute named "encoded" whos value is a List of encoded properties.
45:            public void setTemplateProperties(String name, Map properties)
46:                    throws PSMBeanException;
47:
48:            // Create a new global template based off an existing template
49:            public void createTemplate(String name, String basis)
50:                    throws PSMBeanException;
51:
52:            // Delete a global template.  
53:            // User is responsible for deleting all configurations that reference the template
54:            public void deleteTemplate(String name) throws PSMBeanException;
55:
56:            // Return a map of all the configuration names and associated templates available for a given dn
57:            // Each key in the map is a configuration name, the value is a String representing the template
58:            // basis of the configuration
59:            public Map getConfigurationNamesByDn(String dn)
60:                    throws PSMBeanException;
61:
62:            // Return a map of all the configuration names and associated dns available for a given template
63:            // Each key in the map is a configuration name, the value is a List of Strings representing dns
64:            // that have that configuration defined
65:            public Map getConfigurationNamesByTemplate(String template)
66:                    throws PSMBeanException;
67:
68:            // Return a map of property names and their values for a configuration and dn
69:            public Map getConfigurationProperties(String dn, String name)
70:                    throws PSMBeanException;
71:
72:            // Set property values for a configuration and dn, replacing all existing properties 
73:            public void setConfigurationProperties(String dn, String name,
74:                    Map properties) throws PSMBeanException;
75:
76:            // Create a new configuration for given dn
77:            public void createConfiguration(String dn, String name, String basis)
78:                    throws PSMBeanException;
79:
80:            // Delete a configuration for a given dn
81:            public void deleteConfiguration(String dn, String name)
82:                    throws PSMBeanException;
83:
84:            // Return a list of all role and org dns which have the sso adapter service template defined
85:            public List getDnsWithConfigurations() throws PSMBeanException;
86:
87:            // Return a list of authless users that can use the sso adapter service without authentication
88:            public List getAuthorizedAuthlessUsers() throws PSMBeanException;
89:
90:            // Set the list of authless users that can use the sso adapter service without authentication
91:            public void setAuthorizedAuthlessUsers(List userDns)
92:                    throws PSMBeanException;
93:
94:            // Return a whether or not the dn has the SSOAdapter service registered
95:            public Boolean hasSSOAdapterService(String dn)
96:                    throws PSMBeanException;
97:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.