Source Code Cross Referenced for HttpConstants.java in  » JMX » jfoxmx » org » huihoo » jfox » jmx » adaptor » 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 » JMX » jfoxmx » org.huihoo.jfox.jmx.adaptor.http 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /* JFox, the OpenSource J2EE Application Server
02:         *
03:         * Copyright (C) 2002 huihoo.com
04:         * Distributable under GNU LGPL license
05:         * See the GNU Lesser General Public License for more details.
06:         */
07:
08:        package org.huihoo.jfox.jmx.adaptor.http;
09:
10:        /**
11:         * 
12:         * @author <a href="mailto:young_yy@hotmail.com">Young Yang</a>
13:         */
14:
15:        public class HttpConstants {
16:            public static final String CRLF = "\r\n";
17:
18:            public static final String HTTP_REPLY_OK = "OK";
19:            public static final int HTTP_REPLY_OK_ID = 200;
20:            public static final String HTTP_ERROR_BAD_REQUEST = "Bad Request";
21:            public static final int HTTP_ERROR_BAD_REQUEST_ID = 400;
22:            public static final String HTTP_ERROR_UNAUTHORIZED_REQUEST = "Unauthorized";
23:            public static final int HTTP_ERROR_UNAUTHORIZED_REQUEST_ID = 401;
24:            public static final String HTTP_ERROR_NOT_FOUND = "Not Found";
25:            public static final int HTTP_ERROR_NOT_FOUND_ID = 404;
26:
27:            public static final String HTTP_ERROR_DOMAIN_NOT_FOUND = "Domain Not Found";
28:            public static final int HTTP_ERROR_DOMAIN_NOT_FOUND_ID = 455;
29:            public static final String HTTP_ERROR_INSTANTIATION = "Instantiation Error";
30:            public static final int HTTP_ERROR_INSTANTIATION_ID = 456;
31:            public static final String HTTP_ERROR_ILLEGAL_ACCESS = "Illegal Access";
32:            public static final int HTTP_ERROR_ILLEGAL_ACCESS_ID = 457;
33:            public static final String HTTP_ERROR_SERVICE_NOT_FOUND = "Service Not Found";
34:            public static final int HTTP_ERROR_SERVICE_NOT_FOUND_ID = 458;
35:            public static final String HTTP_ERROR_INSTANCE_NOT_FOUND = "Instance Not Found";
36:            public static final int HTTP_ERROR_INSTANCE_NOT_FOUND_ID = 459;
37:            public static final String HTTP_ERROR_CLASS_NOT_FOUND = "Class Not Found";
38:            public static final int HTTP_ERROR_CLASS_NOT_FOUND_ID = 460;
39:            public static final String HTTP_ERROR_PROPERTY_NOT_FOUND = "Property Not Found";
40:            public static final int HTTP_ERROR_PROPERTY_NOT_FOUND_ID = 462;
41:            public static final String HTTP_ERROR_INVOCATION_TARGET = "Invocation Target";
42:            public static final int HTTP_ERROR_INVOCATION_TARGET_ID = 463;
43:            public static final String HTTP_ERROR_INVALID_PROP_VALUE = "Invalid Property Value";
44:            public static final int HTTP_ERROR_INVALID_PROP_VALUE_ID = 464;
45:            public static final String HTTP_ERROR_INSTANCE_ALREADY_EXISTS = "Instance Already Exists";
46:            public static final int HTTP_ERROR_INSTANCE_ALREADY_EXISTS_ID = 465;
47:            public static final String HTTP_ERROR_NO_SUCH_METHOD = "No Such Method";
48:            public static final int HTTP_ERROR_NO_SUCH_METHOD_ID = 466;
49:            public static final String HTTP_ERROR_PERMISSION_DENIED = "Permission Denied";
50:            public static final int HTTP_ERROR_PERMISSION_DENIED_ID = 469;
51:            public static final String HTTP_ERROR_REFLECTION = "Reflection";
52:            public static final int HTTP_ERROR_REFLECTION_ID = 470;
53:            public static final String HTTP_ERROR_MBEAN_REGISTRATION = "MBean Registration Failure";
54:            public static final int HTTP_ERROR_MBEAN_REGISTRATION_ID = 471;
55:            public static final String HTTP_ERROR_MBEAN = "MBean Failure";
56:            public static final int HTTP_ERROR_MBEAN_ID = 472;
57:            public static final String HTTP_ERROR_NOT_COMPLIANT_MBEAN = "Not Compliant MBean";
58:            public static final int HTTP_ERROR_NOT_COMPLIANT_MBEAN_ID = 473;
59:            public static final String HTTP_ERROR_MALFORMED_OBJECTNAME = "Malformed ObjectName";
60:            public static final int HTTP_ERROR_MALFORMED_OBJECTNAME_ID = 474;
61:            public static final String HTTP_ERROR_ATTRIBUTE_NOT_FOUND = "Attribute Not Found";
62:            public static final int HTTP_ERROR_ATTRIBUTE_NOT_FOUND_ID = 475;
63:            public static final String HTTP_ERROR_INTROSPECTION = "Introspection";
64:            public static final int HTTP_ERROR_INTROSPECTION_ID = 476;
65:            public static final String HTTP_ERROR_SET_ATTRIBUTES = "All Attributes Not Set";
66:            public static final int HTTP_ERROR_SET_ATTRIBUTES_ID = 477;
67:
68:            public static final int HTTP_BAD_REQUEST = -1;
69:            public static final int HTTP_GET_REQUEST = 1;
70:            public static final int HTTP_POST_REQUEST = 2;
71:            public static final int HTTP_HEAD_REQUEST = 3;
72:
73:            public static final String CONTENT_LENGTH_HEADER = "Content-Length";
74:            public static final String CONTENT_TYPE_HEADER = "Content-Type";
75:            public static final String DATE_HEADER = "Date";
76:            public static final String CONNECTION = "Connection";
77:            public static final String WWW_AUTHENTICATE_HEADER = "WWW-Authenticate";
78:            public static final String AUTHORIZATION_HEADER = "Authorization";
79:
80:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.