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


0001:        /*
0002:         * BEGIN_HEADER - DO NOT EDIT
0003:         *
0004:         * The contents of this file are subject to the terms
0005:         * of the Common Development and Distribution License
0006:         * (the "License").  You may not use this file except
0007:         * in compliance with the License.
0008:         *
0009:         * You can obtain a copy of the license at
0010:         * https://open-esb.dev.java.net/public/CDDLv1.0.html.
0011:         * See the License for the specific language governing
0012:         * permissions and limitations under the License.
0013:         *
0014:         * When distributing Covered Code, include this CDDL
0015:         * HEADER in each file and include the License file at
0016:         * https://open-esb.dev.java.net/public/CDDLv1.0.html.
0017:         * If applicable add the following below this CDDL HEADER,
0018:         * with the fields enclosed by brackets "[]" replaced with
0019:         * your own identifying information: Portions Copyright
0020:         * [year] [name of copyright owner]
0021:         */
0022:
0023:        /*
0024:         * @(#)LocalStringKeys.java
0025:         * Copyright 2004-2007 Sun Microsystems, Inc. All Rights Reserved.
0026:         *
0027:         * END_HEADER - DO NOT EDIT
0028:         */
0029:        package com.sun.jbi.framework;
0030:
0031:        /**
0032:         * This interface contains the property keys used for looking up message
0033:         * text in the LocalStrings resource bundle.
0034:         *
0035:         * IMPORTANT: The number of property keys defined in this file must always
0036:         *            match the number of properties defined LocalStrings_en.properties.
0037:         *            The keys defined in this file must all match the keys for the
0038:         *            properties defined in LocalStrings_en.properties. The junit test
0039:         *            for this class checks all of this and fails with detailed
0040:         *            messages if any mismatches are found.
0041:         *
0042:         * @author Sun Microsystems, Inc.
0043:         */
0044:        public interface LocalStringKeys {
0045:            //
0046:            // Message keys for common words or phrases
0047:            //
0048:
0049:            /**
0050:             * Binding.
0051:             */
0052:            String BINDING = "BINDING";
0053:            /**
0054:             * Component.
0055:             */
0056:            String COMPONENT = "COMPONENT";
0057:            /**
0058:             * Engine.
0059:             */
0060:            String ENGINE = "ENGINE";
0061:            /**
0062:             * No exception message.
0063:             */
0064:            String NO_MESSAGE = "NO_MESSAGE";
0065:            /**
0066:             * Shared Unit.
0067:             */
0068:            String SERVICE_UNIT = "SERVICE_UNIT";
0069:            /**
0070:             * Shared Library.
0071:             */
0072:            String SHARED_LIBRARY = "SHARED_LIBRARY";
0073:            /**
0074:             * Unable to print stack trace.
0075:             */
0076:            String STACK_TRACE_PRINT_FAILED = "STACK_TRACE_PRINT_FAILED";
0077:            /**
0078:             * Unknown.
0079:             */
0080:            String UNKNOWN = "UNKNOWN";
0081:
0082:            //
0083:            // Message keys for common messages
0084:            //
0085:
0086:            /**
0087:             * Error message - a required list argument is empty.
0088:             */
0089:            String EMPTY_LIST_ARGUMENT = "EMPTY_LIST_ARGUMENT";
0090:            /**
0091:             * Error message - a required string argument is empty.
0092:             */
0093:            String EMPTY_STRING_ARGUMENT = "EMPTY_STRING_ARGUMENT";
0094:            /**
0095:             * Error message - an argument is invalid.
0096:             */
0097:            String INVALID_ARGUMENT = "INVALID_ARGUMENT";
0098:            /**
0099:             * Error message - a required argument is null.
0100:             */
0101:            String NULL_ARGUMENT = "NULL_ARGUMENT";
0102:            /**
0103:             * Warning message - service already initialized.
0104:             */
0105:            String SERVICE_ALREADY_INITIALIZED = "SERVICE_ALREADY_INITIALIZED";
0106:            /**
0107:             * Warning message - service already started.
0108:             */
0109:            String SERVICE_ALREADY_STARTED = "SERVICE_ALREADY_STARTED";
0110:            /**
0111:             * Warning message - service already stopped.
0112:             */
0113:            String SERVICE_ALREADY_STOPPED = "SERVICE_ALREADY_STOPPED";
0114:            /**
0115:             * Info message - service initialized.
0116:             */
0117:            String SERVICE_INITIALIZED = "SERVICE_INITIALIZED";
0118:            /**
0119:             * Info message - service started.
0120:             */
0121:            String SERVICE_STARTED = "SERVICE_STARTED";
0122:            /**
0123:             * Info message - service stopped.
0124:             */
0125:            String SERVICE_STOPPED = "SERVICE_STOPPED";
0126:
0127:            //
0128:            // Message keys for JBIFramework
0129:            //
0130:
0131:            // service names
0132:
0133:            /**
0134:             * Component Framework.
0135:             */
0136:            String CF_NAME = "CF_NAME";
0137:            /**
0138:             * Component Registry.
0139:             */
0140:            String CR_NAME = "CR_NAME";
0141:            /**
0142:             * Configuration Service .
0143:             */
0144:            String CS_NAME = "CS_NAME";
0145:
0146:            /**
0147:             * Management Service.
0148:             */
0149:            String MS_NAME = "MS_NAME";
0150:            /**
0151:             * Normalized Message Service.
0152:             */
0153:            String NMS_NAME = "NMS_NAME";
0154:            /**
0155:             * Registry Service.
0156:             */
0157:            String RS_NAME = "RS_NAME";
0158:            /**
0159:             * Security Service.
0160:             */
0161:            String SS_NAME = "SS_NAME";
0162:            /**
0163:             * Management Runtime Service.
0164:             */
0165:            String MRS_NAME = "MRS_NAME";
0166:
0167:            // messages
0168:
0169:            /**
0170:             * Error message - framework initialization failed.
0171:             */
0172:            String INIT_FRAMEWORK_FAILED = "INIT_FRAMEWORK_FAILED";
0173:            /**
0174:             * Error message - service initialization failed.
0175:             */
0176:            String INIT_SERVICE_FAILED = "INIT_SERVICE_FAILED";
0177:            /**
0178:             * Logging message - framework initialized.
0179:             */
0180:            String JBI_INITIALIZED = "JBI_INITIALIZED";
0181:            /**
0182:             * Logging message - framework initializing.
0183:             */
0184:            String JBI_INITIALIZING = "JBI_INITIALIZING";
0185:            /**
0186:             * Logging message - framework ready for requests.
0187:             */
0188:            String JBI_READY = "JBI_READY";
0189:            /**
0190:             * Logging message - framework shutdown elapsed time.
0191:             */
0192:            String JBI_SHUTDOWN_TIME = "JBI_SHUTDOWN_TIME";
0193:            /**
0194:             * Logging message - framework shutting down.
0195:             */
0196:            String JBI_SHUTTING_DOWN = "JBI_SHUTTING_DOWN";
0197:            /**
0198:             * Logging message - framework shut down.
0199:             */
0200:            String JBI_SHUT_DOWN = "JBI_SHUT_DOWN";
0201:            /**
0202:             * Logging message - framework started.
0203:             */
0204:            String JBI_STARTED = "JBI_STARTED";
0205:            /**
0206:             * Logging message - framework starting.
0207:             */
0208:            String JBI_STARTING = "JBI_STARTING";
0209:            /**
0210:             * Logging message - framework startup elapsed time.
0211:             */
0212:            String JBI_STARTUP_TIME = "JBI_STARTUP_TIME";
0213:            /**
0214:             * Logging message - framework terminated.
0215:             */
0216:            String JBI_TERMINATED = "JBI_TERMINATED";
0217:            /**
0218:             * Logging message - framework terminating.
0219:             */
0220:            String JBI_TERMINATING = "JBI_TERMINATING";
0221:            /**
0222:             * Error message - framework start failed.
0223:             */
0224:            String START_FRAMEWORK_FAILED = "START_FRAMEWORK_FAILED";
0225:            /**
0226:             * Error message - service start failed.
0227:             */
0228:            String START_SERVICE_FAILED = "START_SERVICE_FAILED";
0229:            /**
0230:             * Error message - framework stop failed.
0231:             */
0232:            String STOP_FRAMEWORK_FAILED = "STOP_FRAMEWORK_FAILED";
0233:            /**
0234:             * Error message - service stop failed.
0235:             */
0236:            String STOP_SERVICE_FAILED = "STOP_SERVICE_FAILED";
0237:
0238:            /**
0239:             * Error message - failed to create jbi admin state file.
0240:             */
0241:            String JBI_STATE_FILE_CREATION_FAILED = "JBI_STATE_FILE_CREATION_FAILED";
0242:            //
0243:            // Message keys for ComponentFramework
0244:            //
0245:
0246:            /**
0247:             * Error message - invalid component startup value.
0248:             */
0249:            String CF_INVALID_STARTUP_PROPERTY = "CF_INVALID_STARTUP_PROPERTY";
0250:            /**
0251:             * Error message - shutdown interrupted.
0252:             */
0253:            String CF_SHUTDOWN_INTERRUPTED = "CF_SHUTDOWN_INTERRUPTED";
0254:            /**
0255:             * Error message - startup interrupted.
0256:             */
0257:            String CF_STARTUP_INTERRUPTED = "CF_STARTUP_INTERRUPTED";
0258:            /**
0259:             * Info message - stopping all components.
0260:             */
0261:            String CF_STOPPING_ALL = "CF_STOPPING_ALL";
0262:
0263:            // bootstrap messages
0264:
0265:            /**
0266:              Error message - bootstrap init() method failed.
0267:             */
0268:            String CF_BOOTSTRAP_GET_EXTENSION_FAILED = "CF_BOOTSTRAP_GET_EXTENSION_FAILED";
0269:            /**
0270:             * Error message - bootstrap cleanUp() method failed.
0271:             */
0272:            String CF_BOOTSTRAP_CLEANUP_FAILED = "CF_BOOTSTRAP_CLEANUP_FAILED";
0273:            /**
0274:              Error message - bootstrap init() method failed.
0275:             */
0276:            String CF_BOOTSTRAP_INIT_FAILED = "CF_BOOTSTRAP_INIT_FAILED";
0277:            /**
0278:              Error message - bootstrap cleanUp() method failed after onInstall().
0279:             */
0280:            String CF_BOOTSTRAP_INSTALL_CLEANUP_FAILED = "CF_BOOTSTRAP_INSTALL_CLEANUP_FAILED";
0281:            /**
0282:             * Error message - bootstrap not loaded.
0283:             */
0284:            String CF_BOOTSTRAP_NOT_LOADED = "CF_BOOTSTRAP_NOT_LOADED";
0285:            /**
0286:             * Error message - bootstrap onInstall() method failed.
0287:             */
0288:            String CF_BOOTSTRAP_ONINSTALL_FAILED = "CF_BOOTSTRAP_ONINSTALL_FAILED";
0289:            /**
0290:             * Error message - bootstrap onUninstall() method failed.
0291:             */
0292:            String CF_BOOTSTRAP_ONUNINSTALL_FAILED = "CF_BOOTSTRAP_ONUNINSTALL_FAILED";
0293:            /**
0294:              Error message - bootstrap cleanUp() method failed after onUninstall().
0295:             */
0296:            String CF_BOOTSTRAP_UNINSTALL_CLEANUP_FAILED = "CF_BOOTSTRAP_UNINSTALL_CLEANUP_FAILED";
0297:            /**
0298:              Error message - bootstrap cleanUp() method failed during unload.
0299:             */
0300:            String CF_BOOTSTRAP_UNLOAD_CLEANUP_FAILED = "CF_BOOTSTRAP_UNLOAD_CLEANUP_FAILED";
0301:
0302:            // component-related messages
0303:
0304:            /**
0305:             * Error message - component already installed.
0306:             */
0307:            String CF_COMP_ALREADY_INSTALLED = "CF_COMP_ALREADY_INSTALLED";
0308:            /**
0309:             * Error message - component ID already registered.
0310:             */
0311:            String CF_COMP_ALREADY_REGISTERED = "CF_COMP_ALREADY_REGISTERED";
0312:            /**
0313:             * Error message - component cannot be shut down.
0314:             */
0315:            String CF_COMP_CANNOT_SHUTDOWN = "CF_COMP_CANNOT_SHUTDOWN";
0316:            /**
0317:             * Error message - component cannot be started.
0318:             */
0319:            String CF_COMP_CANNOT_START = "CF_COMP_CANNOT_START";
0320:            /**
0321:             * Error message - component cannot be stopped.
0322:             */
0323:            String CF_COMP_CANNOT_STOP = "CF_COMP_CANNOT_STOP";
0324:            /**
0325:             * Error message - initialization of component timed out.
0326:             */
0327:            String CF_COMP_INIT_TIMEOUT = "CF_COMP_INIT_TIMEOUT";
0328:            /**
0329:             * Error message - component initialization failed due to an exception.
0330:             */
0331:            String CF_COMP_INITIALIZATION_FAILED_EXCEPTION = "CF_COMP_INITIALIZATION_FAILED_EXCEPTION";
0332:            /**
0333:             * Error message - installation failed.
0334:             */
0335:            String CF_COMP_INSTALL_FAILED = "CF_COMP_INSTALL_FAILED";
0336:            /**
0337:             * Info message - installation succeeded.
0338:             */
0339:            String CF_COMP_INSTALL_SUCCESSFUL = "CF_COMP_INSTALL_SUCCESSFUL";
0340:            /**
0341:             * Error message - installer MBean registration failed.
0342:             */
0343:            String CF_COMP_INSTALLER_MBEAN_REGISTRATION_FAILED = "CF_COMP_INSTALLER_MBEAN_REGISTRATION_FAILED";
0344:            /**
0345:             * Error message - required shared library not installed.
0346:             */
0347:            String CF_COMP_MISSING_SHARED_LIBRARY = "CF_COMP_MISSING_SHARED_LIBRARY";
0348:            /**
0349:             * Error message - required shared libraries not installed.
0350:             */
0351:            String CF_COMP_MISSING_SHARED_LIBRARY_LIST = "CF_COMP_MISSING_SHARED_LIBRARY_LIST";
0352:            /**
0353:             * Error message - required shared libraries not installed.
0354:             */
0355:            String CF_COMP_MISSING_SHARED_LIBRARIES_START = "CF_COMP_MISSING_SHARED_LIBRARIES_START";
0356:            /**
0357:             * Error message - component not installed.
0358:             */
0359:            String CF_COMP_NO_COMP_INSTALLED = "CF_COMP_NO_COMP_INSTALLED";
0360:            /**
0361:             * Error message - component not available.
0362:             */
0363:            String CF_COMP_NOT_AVAILABLE = "CF_COMP_NOT_AVAILABLE";
0364:            /**
0365:             * Error message - component not found.
0366:             */
0367:            String CF_COMP_NOT_FOUND = "CF_COMP_NOT_FOUND";
0368:            /**
0369:             * Error message - component not installed.
0370:             */
0371:            String CF_COMP_NOT_INSTALLED = "CF_COMP_NOT_INSTALLED";
0372:            /**
0373:             * Error message - component not loaded.
0374:             */
0375:            String CF_COMP_NOT_LOADED = "CF_COMP_NOT_LOADED";
0376:            /**
0377:             * Info message - shutdown forced.
0378:             */
0379:            String CF_COMP_SHUTDOWN_FORCED = "CF_COMP_SHUTDOWN_FORCED";
0380:            /**
0381:             * Info message - shutdown component.
0382:             */
0383:            String CF_COMP_SHUTDOWN_SUCCESSFUL = "CF_COMP_SHUTDOWN_SUCCESSFUL";
0384:            /**
0385:             * Error message - shutdown component timed out.
0386:             */
0387:            String CF_COMP_SHUTDOWN_TIMEOUT = "CF_COMP_SHUTDOWN_TIMEOUT";
0388:            /**
0389:             * Info message - started component.
0390:             */
0391:            String CF_COMP_START_SUCCESSFUL = "CF_COMP_START_SUCCESSFUL";
0392:            /**
0393:             * Error message - start of component timed out.
0394:             */
0395:            String CF_COMP_START_TIMEOUT = "CF_COMP_START_TIMEOUT";
0396:            /**
0397:             * Info message - inactive component.
0398:             */
0399:            String CF_COMP_STOP_NOT_ACTIVE = "CF_COMP_STOP_NOT_ACTIVE";
0400:            /**
0401:             * Info message - stopped component.
0402:             */
0403:            String CF_COMP_STOP_SUCCESSFUL = "CF_COMP_STOP_SUCCESSFUL";
0404:            /**
0405:             * Error message - uninstallation failed.
0406:             */
0407:            String CF_COMP_UNINSTALL_FAILED = "CF_COMP_UNINSTALL_FAILED";
0408:            /**
0409:             * Error message - uninstallation failed due to deployed SUs.
0410:             */
0411:            String CF_COMP_UNINSTALL_FAILED_HAS_SUS = "CF_COMP_UNINSTALL_FAILED_HAS_SUS";
0412:            /**
0413:             * Error message - uninstalling a running component.
0414:             */
0415:            String CF_COMP_UNINSTALL_RUNNING = "CF_COMP_UNINSTALL_RUNNING";
0416:            /**
0417:             * Error message - uninstalling a stopped component.
0418:             */
0419:            String CF_COMP_UNINSTALL_STOPPED = "CF_COMP_UNINSTALL_STOPPED";
0420:            /**
0421:             * Error message - uninstallation succeeded.
0422:             */
0423:            String CF_COMP_UNINSTALL_SUCCESSFUL = "CF_COMP_UNINSTALL_SUCCESSFUL";
0424:            /**
0425:             * Error message - cancel update not allowed, component not found.
0426:             */
0427:            String CF_COMP_UPDATE_CANCEL_NOT_FOUND = "CF_COMP_UPDATE_CANCEL_NOT_FOUND";
0428:            /**
0429:             * Info message - update completed.
0430:             */
0431:            String CF_COMP_UPDATE_COMPLETE = "CF_COMP_UPDATE_COMPLETE";
0432:            /**
0433:             * Error message - update not allowed, component not found.
0434:             */
0435:            String CF_COMP_UPDATE_NOT_FOUND = "CF_COMP_UPDATE_NOT_FOUND";
0436:            /**
0437:             * Error message - update not allowed, component still active.
0438:             */
0439:            String CF_COMP_UPDATE_NOT_SHUT_DOWN = "CF_COMP_UPDATE_NOT_SHUT_DOWN";
0440:            /**
0441:             * Error message - update not allowed, validate not done.
0442:             */
0443:            String CF_COMP_UPDATE_NOT_VALIDATED = "CF_COMP_UPDATE_NOT_VALIDATED";
0444:            /**
0445:             * Error message - validation for update failed.
0446:             */
0447:            String CF_COMP_UPDATE_VALIDATE_FAILED = "CF_COMP_UPDATE_VALIDATE_FAILED";
0448:            /**
0449:             * Error message - cancel upgrade not allowed, component not found.
0450:             */
0451:            String CF_COMP_UPGRADE_CANCEL_NOT_FOUND = "CF_COMP_UPGRADE_CANCEL_NOT_FOUND";
0452:            /**
0453:             * Info message - upgrade completed.
0454:             */
0455:            String CF_COMP_UPGRADE_COMPLETE = "CF_COMP_UPGRADE_COMPLETE";
0456:            /**
0457:             * Error message - upgrade failed.
0458:             */
0459:            String CF_COMP_UPGRADE_FAILED = "CF_COMP_UPGRADE_FAILED";
0460:            /**
0461:             * Error message - IllegalAccessException on upgrade.
0462:             */
0463:            String CF_COMP_UPGRADE_ILLEGAL_ACCESS = "CF_COMP_UPGRADE_ILLEGAL_ACCESS";
0464:            /**
0465:             * Error message - upgrade load failed.
0466:             */
0467:            String CF_COMP_UPGRADE_LOAD_FAILED = "CF_COMP_UPGRADE_LOAD_FAILED";
0468:            /**
0469:             * Error message - missing shared libraries on upgrade.
0470:             */
0471:            String CF_COMP_UPGRADE_MISSING_SHARED_LIBRARIES = "CF_COMP_UPGRADE_MISSING_SHARED_LIBRARIES";
0472:            /**
0473:             * Error message - upgrade not allowed, component not found.
0474:             */
0475:            String CF_COMP_UPGRADE_NOT_FOUND = "CF_COMP_UPGRADE_NOT_FOUND";
0476:            /**
0477:             * Error message - upgrade not allowed, component still active.
0478:             */
0479:            String CF_COMP_UPGRADE_NOT_SHUT_DOWN = "CF_COMP_UPGRADE_NOT_SHUT_DOWN";
0480:            /**
0481:             * Error message - upgrade not allowed, validate not done.
0482:             */
0483:            String CF_COMP_UPGRADE_NOT_VALIDATED = "CF_COMP_UPGRADE_NOT_VALIDATED";
0484:            /**
0485:             * Error message - validation for upgrade failed.
0486:             */
0487:            String CF_COMP_UPGRADE_VALIDATE_FAILED = "CF_COMP_UPGRADE_VALIDATE_FAILED";
0488:            /**
0489:             * Warning message - unrecognized component type.
0490:             */
0491:            String CF_COMP_UNRECOGNIZED_TYPE = "CF_COMP_UNRECOGNIZED_TYPE";
0492:
0493:            // ServiceUnitManager-related messages
0494:
0495:            /**
0496:             * Error message - failed to register deployer MBean.
0497:             */
0498:            String CF_DEPLOYER_MBEAN_REGISTRATION_FAILED = "CF_DEPLOYER_MBEAN_REGISTRATION_FAILED";
0499:            /**
0500:             * Error message - failed to unregister deployer MBean.
0501:             */
0502:            String CF_DEPLOYER_MBEAN_UNREGISTRATION_FAILED = "CF_DEPLOYER_MBEAN_UNREGISTRATION_FAILED";
0503:
0504:            // lifecycle messages
0505:
0506:            /**
0507:             * Error message - failed to register life cycle MBean during restart.
0508:             */
0509:            String CF_LIFECYCLE_MBEAN_NOT_REGISTERED = "CF_LIFECYCLE_MBEAN_NOT_REGISTERED";
0510:            /**
0511:             * Error message - failed to register life cycle MBean.
0512:             */
0513:            String CF_LIFECYCLE_MBEAN_REGISTRATION_FAILED = "CF_LIFECYCLE_MBEAN_REGISTRATION_FAILED";
0514:            /**
0515:             * Error message - failed to unregister life cycle MBean.
0516:             */
0517:            String CF_LIFECYCLE_MBEAN_UNREGISTRATION_FAILED = "CF_LIFECYCLE_MBEAN_UNREGISTRATION_FAILED";
0518:            /**
0519:             * Error message - LifeCycle shutdown() failed.
0520:             */
0521:            String CF_LIFECYCLE_SHUTDOWN_EXCEPTION = "CF_LIFECYCLE_SHUTDOWN_EXCEPTION";
0522:            /**
0523:             * Error message - LifeCycle start() failed.
0524:             */
0525:            String CF_LIFECYCLE_START_EXCEPTION = "CF_LIFECYCLE_START_EXCEPTION";
0526:            /**
0527:             * Error message - LifeCycle stop() failed.
0528:             */
0529:            String CF_LIFECYCLE_STOP_EXCEPTION = "CF_LIFECYCLE_STOP_EXCEPTION";
0530:
0531:            // MBean-related messages
0532:
0533:            /**
0534:             * Warning message - logger MBean unregistration failed.
0535:             */
0536:            String CF_LOGGER_MBEAN_UNREGISTRATION_FAILED = "CF_LOGGER_MBEAN_UNREGISTRATION_FAILED";
0537:            /**
0538:             * Error message - MBean creation failed.
0539:             */
0540:            String CF_MBEAN_CREATION_FAILED = "CF_MBEAN_CREATION_FAILED";
0541:            /**
0542:             * Error message - MBean registration failed.
0543:             */
0544:            String CF_MBEAN_REGISTRATION_FAILED = "CF_MBEAN_REGISTRATION_FAILED";
0545:            /**
0546:             * Warning message - statistics MBean registration failed.
0547:             */
0548:            String CF_STATISTICS_MBEAN_REGISTRATION_FAILED = "CF_STATISTICS_MBEAN_REGISTRATION_FAILED";
0549:            /**
0550:             * Warning message - statistics MBean unregistration failed.
0551:             */
0552:            String CF_STATISTICS_MBEAN_UNREGISTRATION_FAILED = "CF_STATISTICS_MBEAN_UNREGISTRATION_FAILED";
0553:
0554:            /**
0555:             * Warning message - configuration MBean registration failed.
0556:             */
0557:            String CF_CONFIGURATION_MBEAN_REGISTRATION_FAILED = "CF_CONFIGURATION_MBEAN_REGISTRATION_FAILED";
0558:            /**
0559:             * Warning message - configuration MBean unregistration failed.
0560:             */
0561:            String CF_CONFIGURATION_MBEAN_UNREGISTRATION_FAILED = "CF_CONFIGURATION_MBEAN_UNREGISTRATION_FAILED";
0562:
0563:            // shared library related messages
0564:
0565:            /**
0566:             * Error message - shared library already registered.
0567:             */
0568:            String CF_SL_ALREADY_REGISTERED = "CF_SL_ALREADY_REGISTERED";
0569:            /**
0570:             * Error message - shared classloader creation failed.
0571:             */
0572:            String CF_SL_CLASSLOADER_CREATION_FAILED = "CF_SL_CLASSLOADER_CREATION_FAILED";
0573:            /**
0574:             * Error message - installation failed.
0575:             */
0576:            String CF_SL_INSTALL_FAILED = "CF_SL_INSTALL_FAILED";
0577:            /**
0578:             * Info message - installation succeeded.
0579:             */
0580:            String CF_SL_INSTALL_SUCCESSFUL = "CF_SL_INSTALL_SUCCESSFUL";
0581:            /**
0582:             * Error message - namespace referenced by component.
0583:             */
0584:            String CF_SL_REFERENCED_BY = "CF_SL_REFERENCED_BY";
0585:            /**
0586:             * Error message - namespace referenced by components.
0587:             */
0588:            String CF_SL_REFERENCED_BY_LIST = "CF_SL_REFERENCED_BY_LIST";
0589:            /**
0590:             * Info message - uninstall could not remove class loader.
0591:             */
0592:            String CF_SL_UNINSTALL_CLASSLOADER = "CF_SL_UNINSTALL_CLASSLOADER";
0593:            /**
0594:             * Error message - uninstall failed, dependent components exist.
0595:             */
0596:            String CF_SL_UNINSTALL_FAILED_DEPENDENTS = "CF_SL_UNINSTALL_FAILED_DEPENDENTS";
0597:            /**
0598:             * Error message - uninstall failed, no namespace.
0599:             */
0600:            String CF_SL_UNINSTALL_NONEXISTENT = "CF_SL_UNINSTALL_NONEXISTENT";
0601:            /**
0602:             * Error message - uninstall succeeded, dependent components exist.
0603:             */
0604:            String CF_SL_UNINSTALL_OK_DEPENDENTS = "CF_SL_UNINSTALL_OK_DEPENDENTS";
0605:            /**
0606:             * Info message - uninstall successful.
0607:             */
0608:            String CF_SL_UNINSTALL_SUCCESSFUL = "CF_SL_UNINSTALL_SUCCESSFUL";
0609:
0610:            //
0611:            // Message keys for ClassLoaderFactory and DelegatingClassLoader
0612:            //
0613:
0614:            /**
0615:             * Error message - could not create bootstrap classloader.
0616:             */
0617:            String CL_BOOTSTRAP_CREATE_FAILED = "CL_BOOTSTRAP_CREATE_FAILED";
0618:            /**
0619:             * Error message - could not find the component classloader.
0620:             */
0621:            String CL_COMPONENT_CLASSLOADER_NOT_FOUND = "CL_COMPONENT_CLASSLOADER_NOT_FOUND";
0622:            /**
0623:             * Error message - could not create component classloader.
0624:             */
0625:            String CL_COMPONENT_CREATE_FAILED = "CL_COMPONENT_CREATE_FAILED";
0626:            /**
0627:             * Error message - could not find the shared class.
0628:             */
0629:            String CL_SHARED_CLASS_NOT_FOUND = "CL_SHARED_CLASS_NOT_FOUND";
0630:            /**
0631:             * Error message - could not find the shared classloader.
0632:             */
0633:            String CL_SHARED_CLASSLOADER_NOT_FOUND = "CL_SHARED_CLASSLOADER_NOT_FOUND";
0634:            /**
0635:             * Error message - could not create the shared classloader.
0636:             */
0637:            String CL_SHARED_CREATE_FAILED = "CL_SHARED_CREATE_FAILED";
0638:            /**
0639:             * Error Message - class was not loaded with any class loader.
0640:             */
0641:            String CU_CL_LOAD_CLASS_FAILURE = "CU_CL_LOAD_CLASS_FAILURE";
0642:            /**
0643:             * Error Message - I/O error creating class loader.
0644:             */
0645:            String CU_CL_CREATE_IO_ERROR = "CU_CL_CREATE_IO_ERROR";
0646:            /**
0647:             * Error Message - security exception trying to load a class.
0648:             */
0649:            String CU_CL_LOAD_CLASS_SECURITY_EXCEPTION = "CU_CL_LOAD_CLASS_SECURITY_EXCEPTION";
0650:
0651:            //
0652:            // Message keys for Component
0653:            //
0654:
0655:            /**
0656:             * Bootstrap load failed.
0657:             */
0658:            String COMP_BOOTSTRAP_LOAD_FAILED = "COMP_BOOTSTRAP_LOAD_FAILED";
0659:            /**
0660:             * Component is busy.
0661:             */
0662:            String COMP_BUSY = "COMP_BUSY";
0663:            /**
0664:             * Class not found.
0665:             */
0666:            String COMP_CLASS_NOT_FOUND = "COMP_CLASS_NOT_FOUND";
0667:            /**
0668:             * Class not valid.
0669:             */
0670:            String COMP_CLASS_NOT_VALID = "COMP_CLASS_NOT_VALID";
0671:            /**
0672:             * Exception creating instance.
0673:             */
0674:            String COMP_EXCEPTION = "COMP_EXCEPTION";
0675:            /**
0676:             * Instance not valid.
0677:             */
0678:            String COMP_INSTANCE_NOT_VALID = "COMP_INSTANCE_NOT_VALID";
0679:            /**
0680:             * Component returned null value for instance.
0681:             */
0682:            String COMP_INSTANCE_NOT_PROVIDED = "COMP_INSTANCE_NOT_PROVIDED";
0683:            /**
0684:             * Invalid state change.
0685:             */
0686:            String COMP_INVALID_STATE_CHANGE = "COMP_INVALID_STATE_CHANGE";
0687:            /**
0688:             * Invalid type.
0689:             */
0690:            String COMP_INVALID_TYPE = "COMP_INVALID_TYPE";
0691:            /**
0692:             * LifeCycle load failed.
0693:             */
0694:            String COMP_LIFECYCLE_LOAD_FAILED = "COMP_LIFECYCLE_LOAD_FAILED";
0695:            /**
0696:             * Component logger not found.
0697:             */
0698:            String COMP_LOGGER_NOT_FOUND = "COMP_LOGGER_NOT_FOUND";
0699:            /**
0700:             * Component logger registration failed.
0701:             */
0702:            String COMP_LOGGER_REGISTRATION_FAILED = "COMP_LOGGER_REGISTRATION_FAILED";
0703:            /**
0704:             * Component logger settings file close failed.
0705:             */
0706:            String COMP_LOGGER_SETTINGS_CLOSE_FAILED = "COMP_LOGGER_SETTINGS_CLOSE_FAILED";
0707:            /**
0708:             * Component logger settings directory create failed.
0709:             */
0710:            String COMP_LOGGER_SETTINGS_CREATE_FAILED = "COMP_LOGGER_SETTINGS_CREATE_FAILED";
0711:            /**
0712:             * Component logger settings file read failed.
0713:             */
0714:            String COMP_LOGGER_SETTINGS_LOAD_FAILED = "COMP_LOGGER_SETTINGS_LOAD_FAILED";
0715:            /**
0716:             * Component logger settings file create failed.
0717:             */
0718:            String COMP_LOGGER_SETTINGS_SAVE_FAILED = "COMP_LOGGER_SETTINGS_SAVE_FAILED";
0719:            /**
0720:             * Component logger unregistration failed.
0721:             */
0722:            String COMP_LOGGER_UNREGISTRATION_FAILED = "COMP_LOGGER_UNREGISTRATION_FAILED";
0723:            /**
0724:             * Component state installed.
0725:             */
0726:            String COMP_STATE_SHUTDOWN = "COMP_STATE_SHUTDOWN";
0727:            /**
0728:             * Component state loaded.
0729:             */
0730:            String COMP_STATE_LOADED = "COMP_STATE_LOADED";
0731:            /**
0732:             * Component state started.
0733:             */
0734:            String COMP_STATE_STARTED = "COMP_STATE_STARTED";
0735:            /**
0736:             * Component state stopped.
0737:             */
0738:            String COMP_STATE_STOPPED = "COMP_STATE_STOPPED";
0739:
0740:            //
0741:            // Message keys for ComponentContext
0742:            //
0743:
0744:            /**
0745:             * Illegal getLogger request with different resource bundle.
0746:             */
0747:            String CC_LOGGER_DIFFERENT_RESOURCE = "CC_LOGGER_DIFFERENT_RESOURCE";
0748:
0749:            /**
0750:             * Missing resource bundle.
0751:             */
0752:            String CC_LOGGER_MISSING_RESOURCE = "CC_LOGGER_MISSING_RESOURCE";
0753:
0754:            /**
0755:             * Delivery channel not available.
0756:             */
0757:            String CC_NO_DC_AVAILABLE = "CC_NO_DC_AVAILABLE";
0758:
0759:            /**
0760:             * Unable to create LoggerMBean ObjectName.
0761:             */
0762:            String CC_LOGGER_MBEAN_NAME_CREATION_FAILED = "CC_LOGGER_MBEAN_NAME_CREATION_FAILED";
0763:
0764:            /**
0765:             * Unable to create LoggerMBean.
0766:             */
0767:            String CC_LOGGER_MBEAN_CREATION_FAILED = "CC_LOGGER_MBEAN_CREATION_FAILED";
0768:
0769:            /**
0770:             * Unable to register LoggerMBean.
0771:             */
0772:            String CC_LOGGER_MBEAN_REGISTRATION_FAILED = "CC_LOGGER_MBEAN_REGISTRATION_FAILED";
0773:
0774:            /**
0775:             * Null suffix not allowed.
0776:             */
0777:            String CC_LOGGER_NULL_SUFFIX = "CC_LOGGER_NULL_SUFFIX";
0778:
0779:            //
0780:            // Message keys for ComponentRegistry
0781:            //
0782:
0783:            /**
0784:             * Exception message used when a component cannot be registered because
0785:             * its ID is already in use.
0786:             */
0787:            String CR_COMPONENT_ALREADY_REGISTERED = "CR_COMPONENT_ALREADY_REGISTERED";
0788:            /**
0789:             * Exception message used when a component cannot be unregistered because
0790:             * the name is not registered.
0791:             */
0792:            String CR_COMPONENT_NOT_REGISTERED = "CR_COMPONENT_NOT_REGISTERED";
0793:            /**
0794:             * Exception message used when a permanent registration fails.
0795:             */
0796:            String CR_PERMANENT_REGISTRATION_NOT_FOUND = "CR_PERMANENT_REGISTRATION_NOT_FOUND";
0797:            /**
0798:             * Warning message issued when an unrecognized entry is found.
0799:             */
0800:            String CR_RELOAD_BAD_COMPONENT_TYPE = "CR_RELOAD_BAD_COMPONENT_TYPE";
0801:            /**
0802:             * Exception message used when a shared library cannot be registered because
0803:             * its ID is already in use.
0804:             */
0805:            String CR_SL_ALREADY_REGISTERED = "CR_SL_ALREADY_REGISTERED";
0806:            /**
0807:             * Exception message used when a shared library cannot be unregistered
0808:             * because the name is not registered.
0809:             */
0810:            String CR_SL_NOT_REGISTERED = "CR_SL_NOT_REGISTERED";
0811:
0812:            //
0813:            // Message keys for Deployer
0814:            //
0815:
0816:            /**
0817:             * Error - Service Unit already deployed.
0818:             */
0819:            String DMB_SU_ALREADY_DEPLOYED = "DMB_SU_ALREADY_DEPLOYED";
0820:            /**
0821:             * Error - Service Unit cannot be initialized, it is started.
0822:             */
0823:            String DMB_SU_CANNOT_INIT_STARTED = "DMB_SU_CANNOT_INIT_STARTED";
0824:            /**
0825:             * Error - Service Unit cannot be shut down, it is not stopped.
0826:             */
0827:            String DMB_SU_CANNOT_SHUT_DOWN_NOT_STOPPED = "DMB_SU_CANNOT_SHUT_DOWN_NOT_STOPPED";
0828:            /**
0829:             * Error - Service Unit cannot be started, it is not initialized.
0830:             */
0831:            String DMB_SU_CANNOT_START_NOT_INITIALIZED = "DMB_SU_CANNOT_START_NOT_INITIALIZED";
0832:            /**
0833:             * Error - Service Unit cannot be stopped, it is not started.
0834:             */
0835:            String DMB_SU_CANNOT_STOP_SHUT_DOWN = "DMB_SU_CANNOT_STOP_SHUT_DOWN";
0836:            /**
0837:             * Error - Service Unit cannot be undeployed, not shut down.
0838:             */
0839:            String DMB_SU_CANNOT_UNDEPLOY_NOT_SHUT_DOWN = "DMB_SU_CANNOT_UNDEPLOY_NOT_SHUT_DOWN";
0840:            /**
0841:             * Error - Service Unit operation cannot be performed, component is not
0842:             * started.
0843:             */
0844:            String DMB_SU_COMP_NOT_STARTED = "DMB_SU_COMP_NOT_STARTED";
0845:            /**
0846:             * Error - Service Unit not found.
0847:             */
0848:            String DMB_SU_NOT_FOUND = "DMB_SU_NOT_FOUND";
0849:            /**
0850:             * Error - Service Unit operation threw exception.
0851:             */
0852:            String DMB_SU_OPERATION_EXCEPTION = "DMB_SU_OPERATION_EXCEPTION";
0853:            /**
0854:             * Error - Service Unit operation threw exception with no message text.
0855:             */
0856:            String DMB_SU_OPERATION_EXCEPTION_NO_MSG = "DMB_SU_OPERATION_EXCEPTION_NO_MSG";
0857:            /**
0858:             * Error - Service Unit operation was interrupted.
0859:             */
0860:            String DMB_SU_OPERATION_INTERRUPTED = "DMB_SU_OPERATION_INTERRUPTED";
0861:            /**
0862:             * Error - Service Unit operation was interrupted.
0863:             */
0864:            String DMB_SU_OPERATION_NOT_AVAILABLE = "DMB_SU_OPERATION_NOT_AVAILABLE";
0865:            /**
0866:             * Error - Service Unit operation timed out.
0867:             */
0868:            String DMB_SU_OPERATION_TIMEOUT = "DMB_SU_OPERATION_TIMEOUT";
0869:            /**
0870:             * Error - Service Unit state could not be persisted.
0871:             */
0872:            String DMB_SU_STATE_PERSIST_FAILURE = "DMB_SU_STATE_PERSIST_FAILURE";
0873:
0874:            //
0875:            // Message keys for EnvironmentContext
0876:            //
0877:
0878:            /**
0879:             * Info - Cannot load bootstrap properties file.
0880:             */
0881:            String EC_BOOTSTRAP_PROPERTIES_LOAD_FAILED = "EC_BOOTSTRAP_PROPERTIES_LOAD_FAILED";
0882:            /**
0883:             * Info - Cannot open bootstrap properties file.
0884:             */
0885:            String EC_BOOTSTRAP_PROPERTIES_OPEN_FAILED = "EC_BOOTSTRAP_PROPERTIES_OPEN_FAILED";
0886:            /**
0887:             * Logging - Initial properties.
0888:             */
0889:            String EC_INITIAL_PROPERTIES_LIST = "EC_INITIAL_PROPERTIES_LIST";
0890:            /**
0891:             * Error - Invalid log level.
0892:             */
0893:            String EC_INVALID_LOG_LEVEL = "EC_INVALID_LOG_LEVEL";
0894:            /**
0895:             * Error - Invalid timeout value.
0896:             */
0897:            String EC_INVALID_TIMEOUT_PROPERTY = "EC_INVALID_TIMEOUT_PROPERTY";
0898:            /**
0899:             * Error - MBean creation failed.
0900:             */
0901:            String EC_MBEAN_CREATION_FAILED = "EC_MBEAN_CREATION_FAILED";
0902:            /**
0903:             * Error - MBean name creation failed.
0904:             */
0905:            String EC_MBEAN_NAME_CREATION_FAILED = "EC_MBEAN_NAME_CREATION_FAILED";
0906:            /**
0907:             * Error - MBean registration failed.
0908:             */
0909:            String EC_MBEAN_REGISTRATION_FAILED = "EC_MBEAN_REGISTRATION_FAILED";
0910:            /**
0911:             * Warning - MBean unregistration failed.
0912:             */
0913:            String EC_MBEAN_UNREGISTRATION_FAILED = "EC_MBEAN_UNREGISTRATION_FAILED";
0914:            /**
0915:             * Warning - Cannot create configuration MBean.
0916:             */
0917:            String EC_NO_CONFIG_MBEAN = "EC_NO_CONFIG_MBEAN";
0918:            /**
0919:             * Warning - Cannot create logger MBean.
0920:             */
0921:            String EC_NO_LOGGER_MBEAN = "EC_NO_LOGGER_MBEAN";
0922:            /**
0923:             * Warning - Cannot create notification MBean.
0924:             */
0925:            String EC_NO_NOTIFICATION_MBEAN = "EC_NO_NOTIFICATION_MBEAN";
0926:            /**
0927:             * Warning - Cannot create statistics MBean.
0928:             */
0929:            String EC_NO_STATISTICS_MBEAN = "EC_NO_STATISTICS_MBEAN";
0930:            /**
0931:             * Logging - StringTranslator class loader not found.
0932:             */
0933:            String EC_STRING_TRANSLATOR_CLASSLOADER_NOT_FOUND = "EC_STRING_TRANSLATOR_CLASSLOADER_NOT_FOUND";
0934:            /**
0935:             * Logging - TransactionManager not found.
0936:             */
0937:            String EC_TRANSACTION_MANAGER_NOT_FOUND = "EC_TRANSACTION_MANAGER_NOT_FOUND";
0938:            /**
0939:             * Registry initialization failed.
0940:             */
0941:            String EC_JBI_REGISTRY_INIT_FAILED = "EC_JBI_REGISTRY_INIT_FAILED";
0942:
0943:            //
0944:            // Message keys for FrameworkNotification
0945:            //
0946:
0947:            /**
0948:             * Error - failed to create user data for notification.
0949:             */
0950:            String FN_USER_DATA_CREATE_FAILED = "FN_USER_DATA_CREATE_FAILED";
0951:            /**
0952:             * Error - exception sending notification.
0953:             */
0954:            String FN_SEND_NOTIFICATION_FAILED = "FN_SEND_NOTIFICATION_FAILED";
0955:
0956:            //
0957:            // Message keys for ServiceUnit
0958:            //
0959:
0960:            /**
0961:             * Error - already exists.
0962:             */
0963:            String SU_ALREADY_EXISTS = "SU_ALREADY_EXISTS";
0964:            /**
0965:             * Error - invalid state change.
0966:             */
0967:            String SU_INVALID_STATE_CHANGE = "SU_INVALID_STATE_CHANGE";
0968:            /**
0969:             * Error - not found.
0970:             */
0971:            String SU_NOT_FOUND = "SU_NOT_FOUND";
0972:            /**
0973:             * Service Unit state deployed (never initialized).
0974:             */
0975:            String SU_STATE_DEPLOYED = "SU_STATE_DEPLOYED";
0976:            /**
0977:             * Service Unit state shutdown.
0978:             */
0979:            String SU_STATE_SHUTDOWN = "SU_STATE_SHUTDOWN";
0980:            /**
0981:             * Service Unit state started.
0982:             */
0983:            String SU_STATE_STARTED = "SU_STATE_STARTED";
0984:            /**
0985:             * Service Unit state stopped.
0986:             */
0987:            String SU_STATE_STOPPED = "SU_STATE_STOPPED";
0988:
0989:            //
0990:            // Message keys for ServiceUnitFramework
0991:            //
0992:
0993:            /**
0994:             * Info - Service Unit deployed.
0995:             */
0996:            String SUF_DEPLOYED = "SUF_DEPLOYED";
0997:            /**
0998:             * Info - Service Unit started.
0999:             */
1000:            String SUF_STARTED = "SUF_STARTED";
1001:            /**
1002:             * Info - Service Unit stopped.
1003:             */
1004:            String SUF_STOPPED = "SUF_STOPPED";
1005:            /**
1006:             * Info - Service Unit shut down.
1007:             */
1008:            String SUF_SHUT_DOWN = "SUF_SHUT_DOWN";
1009:            /**
1010:             * Info - Service Unit undeployed.
1011:             */
1012:            String SUF_UNDEPLOYED = "SUF_UNDEPLOYED";
1013:
1014:            //
1015:            // Message keys for ServiceUnitManager
1016:            //
1017:
1018:            /**
1019:             * Error - error in ServiceUnitManager.
1020:             */
1021:            String SUM_EXCEPTION = "SUM_EXCEPTION";
1022:            /**
1023:             * Error - init() timeout limit reached.
1024:             */
1025:            String SUM_INIT_TIMEOUT_LIMIT = "SUM_INIT_TIMEOUT_LIMIT";
1026:            /**
1027:             * Error - stack trace print.
1028:             */
1029:            String SUM_STACK_TRACE = "SUM_STACK_TRACE";
1030:            /**
1031:             * Error - start() timeout limit reached.
1032:             */
1033:            String SUM_START_TIMEOUT_LIMIT = "SUM_START_TIMEOUT_LIMIT";
1034:            /**
1035:             * Error - stop() timeout limit reached.
1036:             */
1037:            String SUM_STOP_TIMEOUT_LIMIT = "SUM_STOP_TIMEOUT_LIMIT";
1038:            /**
1039:             * Error - shutDown() timeout limit reached.
1040:             */
1041:            String SUM_SHUTDOWN_TIMEOUT_LIMIT = "SUM_SHUTDOWN_TIMEOUT_LIMIT";
1042:
1043:            //
1044:            // ComponentConfiguration messages
1045:            //
1046:            /** 
1047:             * Error - Missing Component Configuration MBean.
1048:             */
1049:            String CCFG_MISSING_COMPONENT_CONFIG_MBEAN = "CCFG_MISSING_COMPONENT_CONFIG_MBEAN";
1050:
1051:            /**  
1052:             * Error - Could not persist attribute change.
1053:             */
1054:            String CCFG_PERSIST_ATTRIBUTE_FAILURE = "CCFG_PERSIST_ATTRIBUTE_FAILURE";
1055:
1056:            /**
1057:             * Error - Could not add an application variable in the registry.
1058:             */
1059:            String CCFG_FAILED_ADD_APP_VAR_REG = "CCFG_FAILED_ADD_APP_VAR_REG";
1060:
1061:            /**
1062:             * Error - Could not update an application variable in the registry.
1063:             */
1064:            String CCFG_FAILED_UPDATE_APP_VAR_REG = "CCFG_FAILED_UPDATE_APP_VAR_REG";
1065:
1066:            /**
1067:             * Error - Could not deleted an application variable from the registry.
1068:             */
1069:            String CCFG_FAILED_DELETE_APP_VAR_REG = "CCFG_FAILED_DELETE_APP_VAR_REG";
1070:
1071:            /**
1072:             * Unsupported Operation.
1073:             */
1074:            String CCFG_UNSUPPORTED_OPERATION = "CCFG_UNSUPPORTED_OPERATION";
1075:
1076:            /**
1077:             * Error - Could not add an application configuration to the registry.
1078:             */
1079:            String CCFG_FAILED_ADD_APP_CFG_REG = "CCFG_FAILED_ADD_APP_CFG_REG";
1080:
1081:            /**
1082:             * Error - Could not update an application configuration in the registry.
1083:             */
1084:            String CCFG_FAILED_UPDATE_APP_CFG_REG = "CCFG_FAILED_UPDATE_APP_CFG_REG";
1085:
1086:            /**
1087:             * Error - Could not deleted an application configuration from the registry.
1088:             */
1089:            String CCFG_FAILED_DELETE_APP_CFG_REG = "CCFG_FAILED_DELETE_APP_CFG_REG";
1090:
1091:            //
1092:            // XML Utility messages
1093:            //
1094:            /** 
1095:             * Error - Missing required element.
1096:             */
1097:            String XML_MISSING_ELEMENT = "XML_MISSING_ELEMENT";
1098:            /** 
1099:             * Error - Extra elements found when not expected.
1100:             */
1101:            String XML_EXTRA_ELEMENTS = "XML_EXTRA_ELEMENTS";
1102:            /** 
1103:             * Error - Empty element found when not expected.
1104:             */
1105:            String XML_EMPTY_ELEMENT = "XML_EMPTY_ELEMENT";
1106:            /** 
1107:             * Error - Invalid element found.
1108:             */
1109:            String XML_INVALID_ELEMENT = "XML_INVALID_ELEMENT";
1110:            /** 
1111:             * Error - DOM exception while processing XML.
1112:             */
1113:            String XML_DOM_EXCEPTION = "XML_DOM_EXCEPTION";
1114:            /** 
1115:             * Error - Unknown element encountered.
1116:             */
1117:            String XML_UNKNOWN_ELEMENT = "XML_UNKNOWN_ELEMENT";
1118:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.