01: /*
02: * BEGIN_HEADER - DO NOT EDIT
03: *
04: * The contents of this file are subject to the terms
05: * of the Common Development and Distribution License
06: * (the "License"). You may not use this file except
07: * in compliance with the License.
08: *
09: * You can obtain a copy of the license at
10: * https://open-esb.dev.java.net/public/CDDLv1.0.html.
11: * See the License for the specific language governing
12: * permissions and limitations under the License.
13: *
14: * When distributing Covered Code, include this CDDL
15: * HEADER in each file and include the License file at
16: * https://open-esb.dev.java.net/public/CDDLv1.0.html.
17: * If applicable add the following below this CDDL HEADER,
18: * with the fields enclosed by brackets "[]" replaced with
19: * your own identifying information: Portions Copyright
20: * [year] [name of copyright owner]
21: */
22:
23: /*
24: * @(#)LocalStringKeys.java
25: * Copyright 2004-2007 Sun Microsystems, Inc. All Rights Reserved.
26: *
27: * END_HEADER - DO NOT EDIT
28: */
29: package com.sun.jbi.framework.sun;
30:
31: /**
32: * This interface contains the property keys used for looking up message
33: * text in the LocalStrings resource bundle.
34: *
35: * @author Sun Microsystems, Inc.
36: */
37: public interface LocalStringKeys {
38: /**
39: * Failed to read appserver config.
40: */
41: String APPSERVER_CONFIG_ERROR = "APPSERVER_CONFIG_ERROR";
42:
43: /**
44: * Failed to write SOAP config file.
45: */
46: String HTTP_SOAP_CONFIG_WRITE_ERROR = "HTTP_SOAP_CONFIG_WRITE_ERROR";
47:
48: /**
49: * Failed to read SOAP config file.
50: */
51: String HTTP_SOAP_CONFIG_READ_ERROR = "HTTP_SOAP_CONFIG_READ_ERROR";
52:
53: /**
54: * Synchronization disabled.
55: */
56: String JBI_SYNC_DISABLED = "JBI_SYNC_DISABLED";
57:
58: /**
59: * Getting XA resource list for recovery processing.
60: */
61: String GET_XA_RESOURCES = "GET_XA_RESOURCES";
62:
63: /**
64: * Synchronization messages.
65: */
66: static final String JBI_SYNC_FAILED = "JBI_SYNC_FAILED";
67: static final String JBI_SYNC_CHECK_FAILED = "JBI_SYNC_CHECK_FAILED";
68: static final String JBI_SYNC_FILE_COPY_FAILED = "JBI_SYNC_FILE_COPY_FAILED";
69: static final String JBI_SYNC_CONFIG_DIFF = "JBI_SYNC_CONFIG_DIFF";
70: static final String JBI_SYNC_ARCHIVE = "JBI_SYNC_ARCHIVE";
71: static final String JBI_SYNC_UNINSTALL_COMP = "JBI_SYNC_UNINSTALL_COMP";
72: static final String JBI_SYNC_INSTALL_COMP = "JBI_SYNC_INSTALL_COMP";
73: static final String JBI_SYNC_GET_COMP_STATE = "JBI_SYNC_GET_COMP_STATE";
74: static final String JBI_SYNC_SET_COMP_STATE = "JBI_SYNC_SET_COMP_STATE";
75: static final String JBI_SYNC_UNINSTALL_SL = "JBI_SYNC_UNINSTALL_SL";
76: static final String JBI_SYNC_INSTALL_SL = "JBI_SYNC_INSTALL_SL";
77: static final String JBI_SYNC_UNDEPLOY_SA = "JBI_SYNC_UNDEPLOY_SA";
78: static final String JBI_SYNC_DEPLOY_SA = "JBI_SYNC_DEPLOY_SA";
79: static final String JBI_SYNC_GET_SA_STATE = "JBI_SYNC_GET_SA_STATE";
80: static final String JBI_SYNC_SET_SA_STATE = "JBI_SYNC_SET_SA_STATE";
81: static final String JBI_SYNC_SET_COMP_CONFIGURATION = "JBI_SYNC_SET_COMP_CONFIGURATION";
82: static final String JBI_SYNC_DAS_NOT_AVAILABLE = "JBI_SYNC_DAS_NOT_AVAILABLE";
83: static final String JBI_SYNC_DAS_FAILURE = "JBI_SYNC_DAS_FAILURE";
84: static final String JBI_SYNC_HTTP_SOAP_CONFIG_READ_ERROR = "JBI_SYNC_HTTP_SOAP_CONFIG_READ_ERROR";
85: static final String JBI_SYNC_APPSERVER_CONFIG_ERROR = "JBI_SYNC_APPSERVER_CONFIG_ERROR";
86: static final String JBI_SYNC_HTTP_SOAP_CONFIG_WRITE_ERROR = "JBI_SYNC_HTTP_SOAP_CONFIG_WRITE_ERROR";
87: static final String JBI_SYNC_ADD_APP_VAR = "JBI_SYNC_ADD_APP_VAR";
88: static final String JBI_SYNC_REMOVE_APP_VAR = "JBI_SYNC_REMOVE_APP_VAR";
89: static final String JBI_SYNC_ADD_APP_CONFIG = "JBI_SYNC_ADD_APP_CONFIG";
90: static final String JBI_SYNC_REMOVE_APP_CONFIG = "JBI_SYNC_REMOVE_APP_CONFIG";
91: static final String JBI_SYNC_SET_COMP_PROP = "JBI_SYNC_SET_COMP_PROP";
92: static final String JBI_SYNC_APPLY_CONFIGURATION = "JBI_SYNC_APPLY_CONFIGURATION";
93:
94: /**
95: * Exception in a system component during bootstrap.
96: */
97: String SYSTEM_COMPONENT_INIT_EXCEPTION = "SYSTEM_COMPONENT_INIT_EXCEPTION";
98: }
|