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.binding.proxy;
030:
031: /**
032: * I18n Message Keys for the ProxyBinding.
033: * @author Sun Microsystems, Inc
034: */
035: public interface LocalStringKeys {
036: /** Message. */
037: String INIT_START = "INIT_START";
038:
039: /** Message. */
040: String INIT_FAILED = "INIT_FAILED";
041:
042: /** Message. */
043: String SHUTDOWN_BEGIN = "SHUTDOWN_BEGIN";
044:
045: /** Message. */
046: String SHUTDOWN_END = "SHUTDOWN_END";
047:
048: /** Message. */
049: String START_BEGIN = "START_BEGIN";
050:
051: /** Message. */
052: String START_END = "START_END";
053:
054: /** Message. */
055: String STOP_BEGIN = "STOP_BEGIN";
056:
057: /** Message. */
058: String STOP_END = "STOP_END";
059:
060: /** Exception. */
061: String DELIVERYCHANNEL_FAILED = "DELIVERYCHANNEL_FAILED";
062:
063: /** Exception. */
064: String UNKNOWN_CONNECTION_PROVIDER = "UNKNOWN_CONNECTION_PROVIDER";
065:
066: /** Exception. */
067: String NO_CONNECTION_PROVIDER = "NO_CONNECTION_PROVIDER";
068:
069: /** Exception. */
070: String CANT_CREATE_JMS_QUEUESESSION = "CANT_CREATE_JMS_QUEUESESSION";
071:
072: /** Exception. */
073: String CANT_CREATE_CLIENTCONNECTION = "CANT_CREATE_CLIENTCONNECTION";
074:
075: /** Exception. */
076: String CANT_SEND_CLIENTCONNECTION = "CANT_SEND_CLIENTCONNECTION";
077:
078: /** Exception. */
079: String CANT_RECEIVE_CLIENTCONNECTION = "CANT_RECEIVE_CLIENTCONNECTION";
080:
081: /** Exception. */
082: String CANT_CREATE_SERVERCONNECTION = "CANT_CREATE_SERVERCONNECTION";
083:
084: /** Exception. */
085: String CANT_ACCEPT_SERVERCONNECTION = "CANT_ACCEPT_SERVERCONNECTION";
086:
087: /** Exception. */
088: String CLOSE_EVENTCONN = "CLOSE_EVENTCONN";
089:
090: /** Exception. */
091: String CLOSE_CLIENTCONN = "CLOSE_CLIENTCONN";
092:
093: /** Exception. */
094: String CLOSE_SERVERCONN = "CLOSE_SERVERCONN";
095:
096: /** Exception. */
097: String MEPINPUT_TRANSFORMER_ERROR = "MEPINPUT_TRANSFORMER_ERROR";
098:
099: /** Exception. */
100: String MEPINPUT_IO_ERROR = "MEPINPUT_IO_ERROR";
101:
102: /** Exception. */
103: String MEPINPUT_SERVICEENDPOINT_NOTFOUND = "MEPINPUT_SERVICEENDPOINT_NOTFOUND";
104:
105: /** Exception. */
106: String MEPINPUT_ME_PROP_ERROR = "MEPINPUT_ME_PROP_ERROR";
107:
108: /** Exception. */
109: String MEPINPUT_ME_ATTACH_ERROR = "MEPINPUT_ME_ATTACH_ERROR";
110:
111: /** Exception. */
112: String MEPINPUT_NM_PROP_ERROR = "MEPINPUT_NM_PROP_ERROR";
113:
114: /** Exception. */
115: String MEPINPUT_START_STREAM_ERROR = "MEPINPUT_START_STREAM_ERROR";
116:
117: /** Exception. */
118: String MEPINPUT_END_STREAM_ERROR = "MEPINPUT_END_STREAM_ERROR";
119:
120: /** Exception. */
121: String MEPINPUT_FILL_STREAM_ERROR = "MEPINPUT_FILL_STREAM_ERROR";
122:
123: /** Exception. */
124: String MEPINPUT_STREAM_SYNC_ERROR = "MEPINPUT_STREAM_SYNC_ERROR";
125:
126: /** Exception. */
127: String MEPINPUT_UNKNOWN_EXCHANGE = "MEPINPUT_UNKNOWN_EXCHANGE";
128:
129: /** Exception. */
130: String MEPOUTPUT_TRANSFORMER_ERROR = "MEPOUTPUT_TRANSFORMER_ERROR";
131:
132: /** Exception. */
133: String MEPOUTPUT_IO_ERROR = "MEPOUTPUT_IO_ERROR";
134:
135: /** Exception. */
136: String MEPOUTPUT_ME_PROP_ERROR = "MEPOUTPUT_ME_PROP_ERROR";
137:
138: /** Exception. */
139: String MEPOUTPUT_ME_ATTACH_ERROR = "MEPOUTPUT_ME_ATTACH_ERROR";
140:
141: /** Exception. */
142: String MEPOUTPUT_NM_PROP_ERROR = "MEPOUTPUT_NM_PROP_ERROR";
143:
144: /** Exception. */
145: String DATASOURCE_NO_INPUT = "DATASOURCE_NO_INPUT";
146:
147: /** Exception. */
148: String CANT_CONNECT_TO_TARGET = "CANT_CONNECT_TO_TARGET";
149:
150: /** Exception. */
151: String NO_ENDPOINT_AVAILABLE = "NO_ENDPOINT_AVAILABLE";
152:
153: /** Stats MBean *. */
154: String STATS_MBEAN_REGISTERING = "STATS_MBEAN_REGISTERING";
155:
156: /** Stats MBean *. */
157: String STATS_MBEAN_CREATION_FAILED = "STATS_MBEAN_CREATION_FAILED";
158:
159: /** Stats MBean *. */
160: String STATS_MBEAN_RESET = "STATS_MBEAN_RESET";
161:
162: /** Stats MBean *. */
163: String STATS_MBEAN_UPDATE_IN_PROGRESS = "STATS_MBEAN_UPDATE_IN_PROGRESS";
164: }
|