Source Code Cross Referenced for HttpExt.java in  » Web-Server » Jigsaw » org » w3c » www » http » 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 » Web Server » Jigsaw » org.w3c.www.http 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        // HttpExt.java
002:        // $Id: HttpExt.java,v 1.7 2007/02/09 22:20:53 ylafon Exp $
003:        // (c) COPYRIGHT MIT and INRIA, 1998.
004:        // Please first read the full copyright statement in file COPYRIGHT.html
005:
006:        package org.w3c.www.http;
007:
008:        import java.util.Hashtable;
009:        import java.util.Enumeration;
010:
011:        /**
012:         * @version $Revision: 1.7 $
013:         * @author  Benoît Mahé (bmahe@w3.org)
014:         */
015:        public class HttpExt {
016:
017:            protected String name = null;
018:            protected String ns = null;
019:            protected Hashtable exts = null;
020:            protected boolean generated = true;
021:            protected boolean headers = false;
022:
023:            protected void setName(String name) {
024:                this .name = name;
025:            }
026:
027:            /**
028:             * Get the http extension declaration name.
029:             * @return a String instance
030:             */
031:            public String getName() {
032:                return name;
033:            }
034:
035:            protected void setNamespace(String ns) {
036:                this .ns = ns;
037:                this .headers = true;
038:            }
039:
040:            /**
041:             * Get the http extension declaration namespace.
042:             * @return a String instance
043:             */
044:            public String getNamespace() {
045:                return ns;
046:            }
047:
048:            /**
049:             * Does this extension needs specific headers?
050:             * @return a boolean.
051:             */
052:            public boolean needsHeaders() {
053:                return headers;
054:            }
055:
056:            /**
057:             * Add an http extension declaration <token/value>
058:             * @param name the token name.
059:             * @param value the value.     
060:             */
061:            public void addDeclExt(String token, String value) {
062:                exts.put(token, value);
063:            }
064:
065:            /**
066:             * Get an http extension declaration token value.
067:             * @param name the token name.
068:             * @return a String instance
069:             */
070:            public String getDeclExt(String name) {
071:                return (String) exts.get(name);
072:            }
073:
074:            /**
075:             * Get all http extension declaration <token/value>
076:             * @return an Enumeration instance
077:             */
078:            public Enumeration getDeclExtNames() {
079:                return exts.keys();
080:            }
081:
082:            protected String getRealHeader(String header) {
083:                return ns + header;
084:            }
085:
086:            public String toString() {
087:                String string = "\"" + name + "\" ; ns=" + ns;
088:                Enumeration e = exts.keys();
089:                while (e.hasMoreElements()) {
090:                    String tok = (String) e.nextElement();
091:                    String val = (String) exts.get(tok);
092:                    string += ("; " + tok + "=" + val);
093:                }
094:                return string;
095:            }
096:
097:            protected boolean isGenerated() {
098:                return generated;
099:            }
100:
101:            /**
102:             * Constructor, for User
103:             * @param name the Http extension declaration name 
104:             * @param header Does this extension needs specific headers?
105:             * (absoluteURI or field-name)
106:             */
107:            public HttpExt(String name, boolean headers) {
108:                this .generated = false;
109:                this .name = name;
110:                this .exts = new Hashtable(3);
111:                this .headers = headers;
112:            }
113:
114:            /**
115:             * Constructor, for User
116:             * @param old the old Http extension declaration  
117:             * If you want to reply the same extension, use this
118:             * contructor.
119:             */
120:            public HttpExt(HttpExt old) {
121:                this .generated = false;
122:                this .name = old.name;
123:                this .exts = new Hashtable(3);
124:                this .headers = old.headers;
125:            }
126:
127:            protected HttpExt() {
128:                this .generated = true;
129:                this .headers = false;
130:                this .exts = new Hashtable(3);
131:            }
132:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.