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


001:        /* 
002:         * Copyright 2001 Sun Microsystems, Inc.  All rights reserved. 
003:         * PROPRIETARY/CONFIDENTIAL.  Use of this product is subject to license terms. 
004:         */
005:        package com.sun.portal.desktop.context;
006:
007:        import java.util.Iterator;
008:        import java.util.List;
009:        import java.util.Map;
010:
011:        import java.net.URL;
012:        import java.net.MalformedURLException;
013:
014:        import javax.servlet.http.HttpServletRequest;
015:
016:        interface PropertiesContext {
017:            public void init(HttpServletRequest req);
018:
019:            public void refresh();
020:
021:            public String getClassName(String channel);
022:
023:            public String getProviderName(String channel);
024:
025:            public int getProviderVersion(String channel);
026:
027:            public boolean existsChannel(String channel);
028:
029:            public void createChannel(String channelName, String providerName);
030:
031:            public void createContainer(String channelName, String providerName);
032:
033:            public void removeChannel(String channelName);
034:
035:            public void copyChannel(String srcName, String dstName);
036:
037:            //
038:            // properties
039:            //
040:
041:            public Iterator getNames(String channel);
042:
043:            public Object getProperty(String channel, String key);
044:
045:            public Object getProperty(String channel, String key, Object def);
046:
047:            public void setProperty(String channel, String key, Object val);
048:
049:            public String getStringProperty(String channel, String key);
050:
051:            public String getStringProperty(String channel, String key,
052:                    String def);
053:
054:            public String getStringProperty(String channel, String key,
055:                    List pflist);
056:
057:            public String getStringProperty(String channel, String key,
058:                    List pflist, boolean exact);
059:
060:            public String getStringProperty(String channel, String key,
061:                    String def, List pflist);
062:
063:            public void setStringProperty(String channel, String key, String val);
064:
065:            public void setStringProperty(String channel, String key,
066:                    String val, List pflist);
067:
068:            public Map getCollectionProperty(String channel, String key);
069:
070:            public Map getCollectionProperty(String channel, String key,
071:                    List pflist);
072:
073:            public Map getCollectionProperty(String channel, String key, Map def);
074:
075:            public Map getCollectionProperty(String channel, String key,
076:                    Map def, List pflist);
077:
078:            public void setCollectionProperty(String channel, String key,
079:                    Map val);
080:
081:            public void setCollectionProperty(String channel, String key,
082:                    Map val, List pflist);
083:
084:            public void setCollectionProperty(String channel, String key,
085:                    List val);
086:
087:            public void setCollectionProperty(String channel, String key,
088:                    List val, List pflist);
089:
090:            public boolean getBooleanProperty(String channel, String key);
091:
092:            public boolean getBooleanProperty(String channel, String key,
093:                    boolean def);
094:
095:            public boolean getBooleanProperty(String channel, String key,
096:                    List pflist);
097:
098:            public boolean getBooleanProperty(String channel, String key,
099:                    boolean def, List pflist);
100:
101:            public void setBooleanProperty(String channel, String key,
102:                    boolean val);
103:
104:            public void setBooleanProperty(String channel, String key,
105:                    boolean val, List pflist);
106:
107:            public int getIntegerProperty(String channel, String key);
108:
109:            public int getIntegerProperty(String channel, String key, int def);
110:
111:            public int getIntegerProperty(String channel, String key,
112:                    List pflist);
113:
114:            public int getIntegerProperty(String channel, String key, int def,
115:                    List pflist);
116:
117:            public void setIntegerProperty(String channel, String key, int val);
118:
119:            public void setIntegerProperty(String channel, String key, int val,
120:                    List pflist);
121:
122:            public boolean existsStringProperty(String channel, String name);
123:
124:            public boolean existsStringProperty(String channel, String name,
125:                    List pflist);
126:
127:            public boolean existsBooleanProperty(String channel, String name);
128:
129:            public boolean existsBooleanProperty(String channel, String name,
130:                    List pflist);
131:
132:            public boolean existsIntegerProperty(String channel, String name);
133:
134:            public boolean existsIntegerProperty(String channel, String name,
135:                    List pflist);
136:
137:            public boolean existsCollectionProperty(String channel, String name);
138:
139:            public boolean existsCollectionProperty(String channel,
140:                    String name, List pflist);
141:
142:            //
143:            // container channel lists
144:            //
145:
146:            public List getSelectedChannels(String channel);
147:
148:            public List getAvailableChannels(String channel);
149:
150:            public void setSelectedChannels(String channel, List sel);
151:
152:            public void setAvailableChannels(String channel, List avail);
153:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.