01: /*
02: * The contents of this file are subject to the terms of the Common Development
03: * and Distribution License (the License). You may not use this file except in
04: * compliance with the License.
05: *
06: * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
07: * or http://www.netbeans.org/cddl.txt.
08: *
09: * When distributing Covered Code, include this CDDL Header Notice in each file
10: * and include the License file at http://www.netbeans.org/cddl.txt.
11: * If applicable, add the following below the CDDL Header, with the fields
12: * enclosed by brackets [] replaced by your own identifying information:
13: * "Portions Copyrighted [year] [name of copyright owner]"
14: *
15: * The Original Software is NetBeans. The Initial Developer of the Original
16: * Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
17: * Microsystems, Inc. All Rights Reserved.
18: */
19: package org.netbeans.modules.wsdlextensions.jms;
20:
21: /**
22: * JMSMessage
23: */
24: public interface JMSMessage extends JMSComponent {
25:
26: public static final String ELEMENT_PROPERTIES = "properties";
27: public static final String ELEMENT_MAPMESSAGE = "mapmessage";
28:
29: public static final String ATTR_MESSAGE_TYPE = "messageType";
30: public static final String ATTR_TEXTPART = "textPart";
31: public static final String ATTR_CORRELATION_ID_PART = "correlationIdPart";
32: public static final String ATTR_DELIVERY_MODE_PART = "deliveryModePart";
33: public static final String ATTR_PRIORITY_PART = "priorityPart";
34: public static final String ATTR_TYPE_PART = "typePart";
35: public static final String ATTR_MESSAGE_ID_PART = "messageIDPart";
36: public static final String ATTR_REDELIVERED_PART = "redeliveredPart";
37: public static final String ATTR_TIMESTAMP_PART = "timestampPart";
38: public static final String ATTR_USE = "use";
39: public static final String ATTR_ENCODING_STYLE = "encodingStyle";
40:
41: public static final String ATTR_USE_TYPE_LITERAL = "literal";
42: public static final String ATTR_USE_TYPE_ENCODED = "encoded";
43:
44: public String getMessageType();
45:
46: public void setMessageType(String val);
47:
48: public String getUse();
49:
50: public void setUse(String val);
51:
52: public String getTextPart();
53:
54: public void setTextPart(String val);
55:
56: public String getCorrelationIdPart();
57:
58: public void setCorrelationIdPart(String val);
59:
60: public String getDeliveryModePart();
61:
62: public void setDeliveryModePart(String val);
63:
64: public String getPriorityPart();
65:
66: public void setPriorityPart(String val);
67:
68: public String getTypePart();
69:
70: public void setTypePart(String val);
71:
72: public String getMessageIDPart();
73:
74: public void setMessageIDPart(String val);
75:
76: public String getRedeliveredPart();
77:
78: public void setRedeliveredPart(String val);
79:
80: public String getTimestampPart();
81:
82: public void setTimestampPart(String val);
83:
84: public void setJMSEncodingStyle(String val);
85:
86: public String getJMSEncodingStyle();
87: }
|