Source Code Cross Referenced for MimeConstants.java in  » 6.0-JDK-Modules-com.sun » xws-security » com » sun » xml » wss » swa » 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 » 6.0 JDK Modules com.sun » xws security » com.sun.xml.wss.swa 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*
02:         * $Id: MimeConstants.java,v 1.3 2006/09/29 12:05:14 kumarjayanti Exp $
03:         */
04:
05:        /*
06:         * The contents of this file are subject to the terms
07:         * of the Common Development and Distribution License
08:         * (the License).  You may not use this file except in
09:         * compliance with the License.
10:         * 
11:         * You can obtain a copy of the license at
12:         * https://glassfish.dev.java.net/public/CDDLv1.0.html.
13:         * See the License for the specific language governing
14:         * permissions and limitations under the License.
15:         * 
16:         * When distributing Covered Code, include this CDDL
17:         * Header Notice in each file and include the License file
18:         * at https://glassfish.dev.java.net/public/CDDLv1.0.html.
19:         * If applicable, add the following below the CDDL Header,
20:         * with the fields enclosed by brackets [] replaced by
21:         * you own identifying information:
22:         * "Portions Copyrighted [year] [name of copyright owner]"
23:         * 
24:         * Copyright 2006 Sun Microsystems Inc. All Rights Reserved
25:         */
26:
27:        package com.sun.xml.wss.swa;
28:
29:        public interface MimeConstants {
30:            // rfc822, rfc204(5|6|7) charset for mime headers
31:            public static final String US_ASCII = "US-ASCII";
32:
33:            // rfc822 mime headers
34:            public static final String CONTENT_TRANSFER_ENCODING = "Content-Transfer-Encoding";
35:            public static final String CONTENT_DESCRIPTION = "Content-Description";
36:            public static final String CONTENT_DISPOSITION = "Content-Disposition";
37:            public static final String CONTENT_ID = "Content-ID";
38:            public static final String CONTENT_LOCATION = "Content-Location";
39:            public static final String CONTENT_TYPE = "Content-Type";
40:            public static final String CONTENT_LENGTH = "Content-Length";
41:
42:            // rfc2045/6 canonicalized media type names
43:            public static final String TEXT_TYPE = "text";
44:            public static final String IMAGE_TYPE = "image";
45:            public static final String APPLICATION_TYPE = "application";
46:
47:            // rfc2045/6 canonicalized media sub-type names
48:            public static final String XML_TYPE = "xml";
49:            public static final String PLAIN_TYPE = "plain";
50:            public static final String JPEG_TYPE = "jpeg";
51:            public static final String GIF_TYPE = "gif";
52:            public static final String OCTET_STREAM_TYPE = "octet-stream";
53:
54:            // rfc2045/6 canonicalized parameters for text/image/application types
55:            public static final String CHARSET = "charset";
56:
57:            // rfc2045/6 canonicalized parameter names for application type
58:            // for octet-stream subtype
59:            public static final String TYPE = "type";
60:            public static final String PADDING = "padding";
61:            public static final String CONVERSIONS = "conversions";
62:            public static final String INTERPRETER = "interpreter";
63:
64:            //  rfc2183 canonicalized disposition type values for Content-Disposition
65:            public static final String INLINE = "inline";
66:            public static final String ATTACHMENT = "attachment";
67:
68:            //  rfc2183 canonicalized parameter names for Content-Disposition
69:            public static final String FILENAME = "filename";
70:            public static final String CREATION_DATE = "creation-date";
71:            public static final String MODIFICATION_DATE = "modification-date";
72:            public static final String READ_DATE = "read-date";
73:            public static final String SIZE = "size";
74:
75:            // rfc2045/6 content-types
76:            public static final String TEXT_XML_TYPE = TEXT_TYPE + "/"
77:                    + XML_TYPE;
78:            public static final String TEXT_PLAIN_TYPE = TEXT_TYPE + "/"
79:                    + PLAIN_TYPE;
80:            public static final String IMAGE_JPEG_TYPE = IMAGE_TYPE + "/"
81:                    + JPEG_TYPE;
82:            public static final String IMAGE_GIF_TYPE = IMAGE_TYPE + "/"
83:                    + GIF_TYPE;
84:            public static final String APPLICATION_OCTET_STREAM_TYPE = APPLICATION_TYPE
85:                    + "/" + OCTET_STREAM_TYPE;
86:
87:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.