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: * @(#)MessageProperties.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.jms.handler;
030:
031: /**
032: * Message properties.
033: *
034: * @author Sun Microsystems Inc.
035: */
036: interface MessageProperties {
037: /**
038: * Value of byte message.
039: */
040: String BYTE_MESSAGE = "ByteMessage";
041: /**
042: * Persistence.
043: */
044: String DELIVERY_MODE = "PERSISTENCE";
045: /**
046: * Error.
047: */
048: String ERROR = "ERROR";
049: /**
050: * Fault.
051: */
052: String FAULT = "FAULT";
053: /**
054: * Endpoint name.
055: */
056: String JBI_ENDPOINT_NAME = "JBI_ENDPOINT_NAME";
057: /**
058: * Operation.
059: */
060: String JBI_OPERATION_NAME = "JBI_OPERATION";
061: /**
062: * Operation namespace.
063: */
064: String JBI_OPERATION_NAMESPACE = "JBI_OPERATION_NAMESPACE";
065: /**
066: * Service name.s
067: */
068: String JBI_SERVICE_NAME = "JBI_SERVICE_NAME";
069: /**
070: * Jbi status.
071: */
072: String JBI_STATUS = "JBI_STATUS";
073: /**
074: * Correlation ID.
075: */
076: String JMS_CORRELATION_ID = "JMS_CORRELATION_ID";
077: /**
078: * Message Id.
079: */
080: String JMS_MESSAGE_ID = "JMS_MESSAGE_ID";
081: /**
082: * Operation.
083: */
084: String JMS_OPERATION = "OPERATION";
085: /**
086: * Map message.
087: */
088: String MAP_MESSAGE = "MapMessage";
089: /**
090: * MEp.
091: */
092: String MEP = "JBI_MEP";
093: /**
094: * Status.
095: */
096: String MESSAGE_STATUS = "MESSAGE_STATUS";
097: /**
098: * Non persistent.
099: */
100: String NON_PERSISTENT_MODE = "NON-PERSISTENT";
101: /**
102: * Object message.
103: */
104: String OBJECT_MESSAGE = "ObjectMessage";
105: /**
106: * persistent.
107: */
108: String PERSISTENT_MODE = "PERSISTENT";
109: /**
110: * reply to.
111: */
112: String REPLY_TO = "REPLY_TO";
113: /**
114: * Stream message.
115: */
116: String STREAM_MESSAGE = "StreamMessage";
117: /**
118: * Success.
119: */
120: String SUCCESS = "SUCCESS";
121: /**
122: * Text message.
123: */
124: String TEXT_MESSAGE = "TextMessage";
125: /**
126: * Unknown.
127: */
128: String UNKNOWN = "UNKNOWN";
129: }
|