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: }
|