KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > websvc > wsitconf > ui > security > listmodels > MessageHeader


1 /*
2  * The contents of this file are subject to the terms of the Common Development
3  * and Distribution License (the License). You may not use this file except in
4  * compliance with the License.
5  *
6  * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
7  * or http://www.netbeans.org/cddl.txt.
8  *
9  * 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 2006 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

19
20 package org.netbeans.modules.websvc.wsitconf.ui.security.listmodels;
21
22 import org.openide.util.NbBundle;
23
24 public class MessageHeader extends TargetElement {
25
26     public static final String JavaDoc ADDRESSING_TO=NbBundle.getMessage(MessageHeader.class, "COMBO_Addr_To"); //NOI18N
27
public static final String JavaDoc ADDRESSING_FROM=NbBundle.getMessage(MessageHeader.class, "COMBO_Addr_From"); //NOI18N
28
public static final String JavaDoc ADDRESSING_FAULTTO=NbBundle.getMessage(MessageHeader.class, "COMBO_Addr_FaultTo"); //NOI18N
29
public static final String JavaDoc ADDRESSING_REPLYTO=NbBundle.getMessage(MessageHeader.class, "COMBO_Addr_ReplyTo"); //NOI18N
30
public static final String JavaDoc ADDRESSING_MESSAGEID=NbBundle.getMessage(MessageHeader.class, "COMBO_Addr_MessageId"); //NOI18N
31
public static final String JavaDoc ADDRESSING_RELATESTO=NbBundle.getMessage(MessageHeader.class, "COMBO_Addr_RelatesTo"); //NOI18N
32
public static final String JavaDoc ADDRESSING_ACTION=NbBundle.getMessage(MessageHeader.class, "COMBO_Addr_Action"); //NOI18N
33
public static final String JavaDoc RM_ACKREQUESTED=NbBundle.getMessage(MessageHeader.class, "COMBO_RM_AckRequested"); //NOI18N
34
public static final String JavaDoc RM_SEQUENCEACK=NbBundle.getMessage(MessageHeader.class, "COMBO_RM_SequenceAck"); //NOI18N
35
public static final String JavaDoc RM_SEQUENCE=NbBundle.getMessage(MessageHeader.class, "COMBO_RM_Sequence"); //NOI18N
36

37     public static final String JavaDoc[] ALL_HEADERS = new String JavaDoc[] {
38         ADDRESSING_TO,
39         ADDRESSING_FROM,
40         ADDRESSING_FAULTTO,
41         ADDRESSING_REPLYTO,
42         ADDRESSING_MESSAGEID,
43         ADDRESSING_RELATESTO,
44         ADDRESSING_ACTION,
45         RM_ACKREQUESTED,
46         RM_SEQUENCEACK,
47         RM_SEQUENCE
48     };
49
50 // public enum ADDRESSING_HEADERS {
51
// ADDRESSING_TO,
52
// ADDRESSING_FROM,
53
// ADDRESSING_FAULTTO,
54
// ADDRESSING_REPLYTO,
55
// ADDRESSING_MESSAGEID,
56
// ADDRESSING_RELATESTO,
57
// ADDRESSING_ACTION,
58
// };
59
//
60
// public enum RM_HEADERS {
61
// RM_ACKREQUESTED,
62
// RM_SEQUENCEACK,
63
// RM_SEQUENCE
64
// };
65

66     public MessageHeader(String JavaDoc header) {
67         super(header);
68     }
69  
70 }
Popular Tags