Source Code Cross Referenced for LocalStringKeys.java in  » ESB » open-esb » com » sun » jbi » ui » runtime » verifier » 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 » ESB » open esb » com.sun.jbi.ui.runtime.verifier 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * BEGIN_HEADER - DO NOT EDIT
003:         *
004:         * The contents of this file are subject to the terms
005:         * of the Common Development and Distribution License
006:         * (the "License").  You may not use this file except
007:         * in compliance with the License.
008:         *
009:         * You can obtain a copy of the license at
010:         * https://open-esb.dev.java.net/public/CDDLv1.0.html.
011:         * See the License for the specific language governing
012:         * permissions and limitations under the License.
013:         *
014:         * When distributing Covered Code, include this CDDL
015:         * HEADER in each file and include the License file at
016:         * https://open-esb.dev.java.net/public/CDDLv1.0.html.
017:         * If applicable add the following below this CDDL HEADER,
018:         * with the fields enclosed by brackets "[]" replaced with
019:         * your own identifying information: Portions Copyright
020:         * [year] [name of copyright owner]
021:         */
022:
023:        /*
024:         * @(#)LocalStringKeys.java
025:         * Copyright 2004-2007 Sun Microsystems, Inc. All Rights Reserved.
026:         *
027:         * END_HEADER - DO NOT EDIT
028:         */
029:        package com.sun.jbi.ui.runtime.verifier;
030:
031:        /**
032:         * This interface contains the property keys used for looking up message
033:         * text in the LocalStrings resource bundle.
034:         *
035:         * @author Sun Microsystems, Inc.
036:         */
037:        public interface LocalStringKeys {
038:            /** invalid input     */
039:            static final String VERIFIER_INVALID_INPUT = "VERIFIER_INVALID_INPUT";
040:
041:            /** invalid SA archive     */
042:            static final String VERIFIER_INVALID_SA = "VERIFIER_INVALID_SA";
043:
044:            /** su zip  missing */
045:            static final String VERIFIER_SU_ARTIFACT_MISSING = "VERIFIER_SU_ARTIFACT_MISSING";
046:
047:            /** SA not extracted */
048:            static final String VERIFIER_SA_NOT_EXTRACTED = "VERIFIER_SA_NOT_EXTRACTED";
049:
050:            /** component could not be started */
051:            static final String VERIFIER_COMPONENT_NOT_STARTED = "VERIFIER_COMPONENT_NOT_STARTED";
052:
053:            /** no component lifecycle object */
054:            static final String VERIFIER_NO_COMPONENT_LIFECYCLE_OBJECT = "VERIFIER_NO_COMPONENT_LIFECYCLE_OBJECT";
055:
056:            /** many component lifecycle object */
057:            static final String VERIFIER_MANY_COMPONENT_LIFECYCLE_OBJECT = "VERIFIER_MANY_COMPONENT_LIFECYCLE_OBJECT";
058:
059:            /** endpoint resolved */
060:            static final String VERIFIER_ENDPOINT_RESOLVED = "VERIFIER_ENDPOINT_RESOLVED";
061:
062:            /** endpoint could not be resolved as component is not started */
063:            static final String VERIFIER_ENDPOINT_NOT_VERIFIED = "VERIFIER_ENDPOINT_NOT_VERIFIED";
064:
065:            /** endpoint could not be resolved as component is not installed */
066:            static final String VERIFIER_COMPONENT_NOT_INSTALLED = "VERIFIER_COMPONENT_NOT_INSTALLED";
067:
068:            /** no extension mbean for component*/
069:            static final String VERIFIER_NO_COMPONENT_EXTENSION_OBJECT = "VERIFIER_NO_COMPONENT_EXTENSION_OBJECT";
070:
071:            /** many extension mbean for component*/
072:            static final String VERIFIER_MANY_COMPONENT_EXTENSION_OBJECT = "VERIFIER_MANY_COMPONENT_EXTENSION_OBJECT";
073:
074:            /** app vars not resolved*/
075:            static final String VERIFIER_APP_VARS_NOT_RESOLVED = "VERIFIER_APP_VARS_NOT_RESOLVED";
076:
077:            /** app configs not resolved*/
078:            static final String VERIFIER_APP_CONFIGS_NOT_RESOLVED = "VERIFIER_APP_CONFIGS_NOT_RESOLVED";
079:
080:            /** mbean not found */
081:            static final String VERIFIER_INVALID_MBEAN = "VERIFIER_INVALID_MBEAN";
082:
083:            /** issues in determining status */
084:            static final String VERIFIER_ENDPOINT_STATUS_NOT_DETERMINED = "VERIFIER_ENDPOINT_STATUS_NOT_DETERMINED";
085:
086:            /** component could not be shut down */
087:            static final String VERIFIER_COMPONENT_NOT_SHUTDOWN = "VERIFIER_COMPONENT_NOT_SHUTDOWN";
088:
089:            /** verifier template zip could not be created */
090:            static final String VERIFIER_TEMPLATE_ZIP_NOT_CREATED = "VERIFIER_TEMPLATE_ZIP_NOT_CREATED";
091:
092:            /** verifier template zip exists and could not be deleted */
093:            static final String VERIFIER_TEMPLATE_ZIP_EXISTS = "VERIFIER_TEMPLATE_ZIP_EXISTS";
094:
095:            /** java ee verifier EAR file not identified */
096:            static final String VERIFIER_JAVAEE_EAR_FILE_NOT_FOUND = "VERIFIER_JAVAEE_EAR_FILE_NOT_FOUND";
097:
098:            /** export configuration - application is not deployed in target */
099:            static final String VERIFIER_EXPORT_CONFIG_APP_NOT_DEPLOYED = "VERIFIER_EXPORT_CONFIG_APP_NOT_DEPLOYED";
100:
101:            /** application could not be located **/
102:            static final String VERIFIER_APPLICATION_NOT_LOCATED = "VERIFIER_APPLICATION_NOT_LOCATED";
103:
104:            /** could not collect list of app vars */
105:            static final String VERIFIER_ISSUE_COLLECTING_LIST_OF_APP_VARS = "VERIFIER_ISSUE_COLLECTING_LIST_OF_APP_VARS";
106:
107:            /** could not collect list of app configs **/
108:            static final String VERIFIER_ISSUE_COLLECTING_LIST_OF_APP_CONFIGS = "VERIFIER_ISSUE_COLLECTING_LIST_OF_APP_CONFIGS";
109:
110:            /** could not get the app config type */
111:            static final String VERIFIER_ISSUE_COLLECTING_LIST_OF_APP_CONFIG_TYPE = "VERIFIER_ISSUE_COLLECTING_LIST_OF_APP_CONFIG_TYPE";
112:
113:            /** issue in exporting app config */
114:            static final String VERIFIER_ERROR_EXPORTING_APP_CONFIG = "VERIFIER_ERROR_EXPORTING_APP_CONFIG";
115:
116:            /** issue in retrieving app. var value */
117:            static final String VERIFIER_ISSUE_GETTING_APP_VAR_VALUE = "VERIFIER_ISSUE_GETTING_APP_VAR_VALUE";
118:
119:            /** issue in retrieving app. config value */
120:            static final String VERIFIER_ISSUE_GETTING_APP_CONFIG_VALUE = "VERIFIER_ISSUE_GETTING_APP_CONFIG_VALUE";
121:
122:            /** issue in exporting app. var value */
123:            static final String VERIFIER_ISSUE_EXPORTING_APP_VAR_VALUE = "VERIFIER_ISSUE_EXPORTING_APP_VAR_VALUE";
124:
125:            /** issue in exporting app. config value */
126:            static final String VERIFIER_ISSUE_EXPORTING_APP_CONFIG_VALUE = "VERIFIER_ISSUE_EXPORTING_APP_CONFIG_VALUE";
127:
128:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.