KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > websvc > wsitconf > ui > ComboConstants


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;
21
22 import org.openide.util.NbBundle;
23
24 /**
25  *
26  * @author MartinG
27  */

28 public interface ComboConstants {
29
30     //Transaction Constants
31
String JavaDoc TX_REQUIRED = NbBundle.getMessage(ComboConstants.class, "COMBO_Required"); //NOI18N
32
String JavaDoc TX_REQUIRESNEW = NbBundle.getMessage(ComboConstants.class, "COMBO_RequiresNew"); //NOI18N
33
String JavaDoc TX_NOTSUPPORTED = NbBundle.getMessage(ComboConstants.class, "COMBO_NotSupported"); //NOI18N
34
String JavaDoc TX_SUPPORTED = NbBundle.getMessage(ComboConstants.class, "COMBO_Supported"); //NOI18N
35
String JavaDoc TX_MANDATORY = NbBundle.getMessage(ComboConstants.class, "COMBO_Mandatory"); //NOI18N
36
String JavaDoc TX_NEVER = NbBundle.getMessage(ComboConstants.class, "COMBO_Never"); //NOI18N
37

38     // Security Profiles
39
String JavaDoc PROF_TRANSPORT = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_Transport"); //NOI18N
40
String JavaDoc PROF_MSGAUTHSSL = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_MsgAuthSSL"); //NOI18N
41
String JavaDoc PROF_SAMLSSL = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_SAMLSSL"); //NOI18N
42
String JavaDoc PROF_USERNAME = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_Username"); //NOI18N
43
String JavaDoc PROF_MUTUALCERT = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_MutualCert"); //NOI18N
44
String JavaDoc PROF_ENDORSCERT = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_EndorsCert"); //NOI18N
45
String JavaDoc PROF_SAMLSENDER = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_SamlSender"); //NOI18N
46
String JavaDoc PROF_SAMLHOLDER = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_SamlHolder"); //NOI18N
47
String JavaDoc PROF_KERBEROS = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_Kerberos"); //NOI18N
48
String JavaDoc PROF_STSISSUED = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_STSIssued"); //NOI18N
49
String JavaDoc PROF_STSISSUEDCERT = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_STSIssuedCert"); //NOI18N
50
String JavaDoc PROF_STSISSUEDENDORSE = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_STSIssuedEndorse"); //NOI18N
51
String JavaDoc PROF_GENERIC = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_Generic"); //NOI18N
52

53     String JavaDoc PROF_TRANSPORT_INFO = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_Transport_Info"); //NOI18N
54
String JavaDoc PROF_MSGAUTHSSL_INFO = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_MsgAuthSSL_Info"); //NOI18N
55
String JavaDoc PROF_SAMLSSL_INFO = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_SAMLSSL_Info"); //NOI18N
56
String JavaDoc PROF_USERNAME_INFO = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_Username_Info"); //NOI18N
57
String JavaDoc PROF_MUTUALCERT_INFO = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_MutualCert_Info"); //NOI18N
58
String JavaDoc PROF_ENDORSCERT_INFO = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_EndorsCert_Info"); //NOI18N
59
String JavaDoc PROF_SAMLSENDER_INFO = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_SamlSender_Info"); //NOI18N
60
String JavaDoc PROF_SAMLHOLDER_INFO = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_SamlHolder_Info"); //NOI18N
61
String JavaDoc PROF_KERBEROS_INFO = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_Kerberos_Info"); //NOI18N
62
String JavaDoc PROF_STSISSUED_INFO = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_STSIssued_Info"); //NOI18N
63
String JavaDoc PROF_STSISSUEDCERT_INFO = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_STSIssuedCert_Info"); //NOI18N
64
String JavaDoc PROF_STSISSUEDENDORSE_INFO = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_STSIssuedEndorse_Info"); //NOI18N
65
String JavaDoc PROF_GENERIC_INFO = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_Generic_Info"); //NOI18N
66

67     String JavaDoc ASYMMETRIC = NbBundle.getMessage(ComboConstants.class, "COMBO_Asymmetric"); //NOI18N
68
String JavaDoc NOSECURITY = NbBundle.getMessage(ComboConstants.class, "COMBO_NoSecurity"); //NOI18N
69
String JavaDoc SYMMETRIC = NbBundle.getMessage(ComboConstants.class, "COMBO_Symmetric"); //NOI18N
70
String JavaDoc TRANSPORT = NbBundle.getMessage(ComboConstants.class, "COMBO_Transport"); //NOI18N
71

72     String JavaDoc USERNAME = NbBundle.getMessage(ComboConstants.class, "COMBO_UsernameToken");
73     String JavaDoc X509 = NbBundle.getMessage(ComboConstants.class, "COMBO_X509Token");
74     String JavaDoc SAML = NbBundle.getMessage(ComboConstants.class, "COMBO_SamlToken");
75     String JavaDoc REL = NbBundle.getMessage(ComboConstants.class, "COMBO_RelToken");
76     String JavaDoc KERBEROS = NbBundle.getMessage(ComboConstants.class, "COMBO_KerberosToken");
77     String JavaDoc SECURITYCONTEXT = NbBundle.getMessage(ComboConstants.class, "COMBO_SecurityContextToken");
78     String JavaDoc SECURECONVERSATION = NbBundle.getMessage(ComboConstants.class, "COMBO_SecureConversationToken");
79     String JavaDoc ISSUED = NbBundle.getMessage(ComboConstants.class, "COMBO_IssuedToken");
80     String JavaDoc SPNEGOCONTEXT = NbBundle.getMessage(ComboConstants.class, "COMBO_SpNegoContextToken");
81     String JavaDoc HTTPS = NbBundle.getMessage(ComboConstants.class, "COMBO_HttpsToken");
82
83     String JavaDoc PROTECTION = "protection"; //NOI18N
84
String JavaDoc SIGNATURE = "signature"; //NOI18N
85
String JavaDoc ENCRYPTION = "encryption"; //NOI18N
86
String JavaDoc INITIATOR = "initiator"; //NOI18N
87
String JavaDoc RECIPIENT = "recipient"; //NOI18N
88

89     String JavaDoc STRICT = NbBundle.getMessage(ComboConstants.class, "COMBO_Strict"); //NOI18N
90
String JavaDoc LAX = NbBundle.getMessage(ComboConstants.class, "COMBO_Lax"); //NOI18N
91
String JavaDoc LAXTSFIRST = NbBundle.getMessage(ComboConstants.class, "COMBO_LaxTsFirst"); //NOI18N
92
String JavaDoc LAXTSLAST = NbBundle.getMessage(ComboConstants.class, "COMBO_LaxTsLast"); //NOI18N
93

94     String JavaDoc BASIC256 = NbBundle.getMessage(ComboConstants.class, "COMBO_Basic256"); //NOI18N
95
String JavaDoc BASIC192 = NbBundle.getMessage(ComboConstants.class, "COMBO_Basic192"); //NOI18N
96
String JavaDoc BASIC128 = NbBundle.getMessage(ComboConstants.class, "COMBO_Basic128"); //NOI18N
97
String JavaDoc TRIPLEDES = NbBundle.getMessage(ComboConstants.class, "COMBO_TripleDes"); //NOI18N
98
String JavaDoc BASIC256RSA15 = NbBundle.getMessage(ComboConstants.class, "COMBO_Basic256Rsa15"); //NOI18N
99
String JavaDoc BASIC192RSA15 = NbBundle.getMessage(ComboConstants.class, "COMBO_Basic192Rsa15"); //NOI18N
100
String JavaDoc BASIC128RSA15 = NbBundle.getMessage(ComboConstants.class, "COMBO_Basic128Rsa15"); //NOI18N
101
String JavaDoc TRIPLEDESRSA15 = NbBundle.getMessage(ComboConstants.class, "COMBO_TripleDesRsa15"); //NOI18N
102
String JavaDoc BASIC256SHA256 = NbBundle.getMessage(ComboConstants.class, "COMBO_Basic256Sha256"); //NOI18N
103
String JavaDoc BASIC192SHA256 = NbBundle.getMessage(ComboConstants.class, "COMBO_Basic192Sha256"); //NOI18N
104
String JavaDoc BASIC128SHA256 = NbBundle.getMessage(ComboConstants.class, "COMBO_Basic128Sha256"); //NOI18N
105
String JavaDoc TRIPLEDESSHA256 = NbBundle.getMessage(ComboConstants.class, "COMBO_TripleDesSha256"); //NOI18N
106
String JavaDoc BASIC256SHA256RSA15 = NbBundle.getMessage(ComboConstants.class, "COMBO_Basic256Sha256Rsa15"); //NOI18N
107
String JavaDoc BASIC192SHA256RSA15 = NbBundle.getMessage(ComboConstants.class, "COMBO_Basic192Sha256Rsa15"); //NOI18N
108
String JavaDoc BASIC128SHA256RSA15 = NbBundle.getMessage(ComboConstants.class, "COMBO_Basic128Sha256Rsa15"); //NOI18N
109
String JavaDoc TRIPLEDESSHA256RSA15 = NbBundle.getMessage(ComboConstants.class, "COMBO_TripleDesSha256Rsa15"); //NOI18N
110

111     String JavaDoc SAML_V1011 = NbBundle.getMessage(ComboConstants.class, "COMBO_SAML1011");
112     String JavaDoc SAML_V1010 = NbBundle.getMessage(ComboConstants.class, "COMBO_SAML1010");
113     String JavaDoc SAML_V1110 = NbBundle.getMessage(ComboConstants.class, "COMBO_SAML1110");
114     String JavaDoc SAML_V1111 = NbBundle.getMessage(ComboConstants.class, "COMBO_SAML1111");
115     String JavaDoc SAML_V2011 = NbBundle.getMessage(ComboConstants.class, "COMBO_SAML2011");
116     
117     String JavaDoc X509_V110 = NbBundle.getMessage(ComboConstants.class, "COMBO_X509_V110");
118     String JavaDoc X509_V310 = NbBundle.getMessage(ComboConstants.class, "COMBO_X509_V310");
119     String JavaDoc X509_PKCS710 = NbBundle.getMessage(ComboConstants.class, "COMBO_X509_PKCS710");
120     String JavaDoc X509_PKIPATHV110 = NbBundle.getMessage(ComboConstants.class, "COMBO_X509_PKIPATHV110");
121     String JavaDoc X509_V111 = NbBundle.getMessage(ComboConstants.class, "COMBO_X509_V111");
122     String JavaDoc X509_V311 = NbBundle.getMessage(ComboConstants.class, "COMBO_X509_V311");
123     String JavaDoc X509_PKCS711 = NbBundle.getMessage(ComboConstants.class, "COMBO_X509_PKCS711");
124     String JavaDoc X509_PKIPATHV111 = NbBundle.getMessage(ComboConstants.class, "COMBO_X509_PKIPATHV111");
125     
126     String JavaDoc KERBEROS_KERBEROS = NbBundle.getMessage(ComboConstants.class, "COMBO_Kerberos");
127     String JavaDoc KERBEROS_KERBEROSGSS = NbBundle.getMessage(ComboConstants.class, "COMBO_Kerberos_GSS");
128     
129     String JavaDoc NONE = " "; //NOI18N
130

131     String JavaDoc NEVER = NbBundle.getMessage(ComboConstants.class, "COMBO_Never"); //NOI18N
132
String JavaDoc ONCE = NbBundle.getMessage(ComboConstants.class, "COMBO_Once"); //NOI18N
133
String JavaDoc ALWAYSRECIPIENT = NbBundle.getMessage(ComboConstants.class, "COMBO_AlwaysToRecipient"); //NOI18N
134
String JavaDoc ALWAYS = NbBundle.getMessage(ComboConstants.class, "COMBO_Always"); //NOI18N
135

136     String JavaDoc NEVER_POLICYSTR = "http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/Never"; //NOI18N
137
String JavaDoc ONCE_POLICYSTR = "http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/Once"; //NOI18N
138
String JavaDoc ALWAYSRECIPIENT_POLICYSTR = "http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/AlwaysToRecipient"; //NOI18N
139
String JavaDoc ALWAYS_POLICYSTR = "http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/Always"; //NOI18N
140

141     String JavaDoc WSS11 = NbBundle.getMessage(ComboConstants.class, "COMBO_WSS11"); //NOI18N
142
String JavaDoc WSS10 = NbBundle.getMessage(ComboConstants.class, "COMBO_WSS10"); //NOI18N
143

144     String JavaDoc ASSYMETRIC_KEYS = NbBundle.getMessage(ComboConstants.class, "COMBO_AssymetricKeys"); //NOI18N
145
String JavaDoc RANDOMSYMMETRIC_KEYS = NbBundle.getMessage(ComboConstants.class, "COMBO_RandomSymmetricKeys"); //NOI18N
146
String JavaDoc ISSUEDSYMMETRIC_KEYS = NbBundle.getMessage(ComboConstants.class, "COMBO_IssuedSymmetricKeys"); //NOI18N
147
String JavaDoc TRANSPORTPROTECTION = NbBundle.getMessage(ComboConstants.class, "COMBO_TransportProtection"); //NOI18N
148

149     String JavaDoc ISSUED_TOKENTYPE_SAML10 = NbBundle.getMessage(ComboConstants.class, "COMBO_Issued_TokenType_SAML10"); //NOI18N
150
String JavaDoc ISSUED_TOKENTYPE_SAML10_POLICYSTR = NbBundle.getMessage(ComboConstants.class, "COMBO_Issued_TokenType_SAML10_PolicyStr"); //NOI18N
151
String JavaDoc ISSUED_TOKENTYPE_SAML11 = NbBundle.getMessage(ComboConstants.class, "COMBO_Issued_TokenType_SAML11"); //NOI18N
152
String JavaDoc ISSUED_TOKENTYPE_SAML11_POLICYSTR = NbBundle.getMessage(ComboConstants.class, "COMBO_Issued_TokenType_SAML11_PolicyStr"); //NOI18N
153
String JavaDoc ISSUED_TOKENTYPE_SAML20 = NbBundle.getMessage(ComboConstants.class, "COMBO_Issued_TokenType_SAML20"); //NOI18N
154
String JavaDoc ISSUED_TOKENTYPE_SAML20_POLICYSTR = NbBundle.getMessage(ComboConstants.class, "COMBO_Issued_TokenType_SAML20_PolicyStr"); //NOI18N
155

156     String JavaDoc ISSUED_KEYTYPE_SYMMETRIC = NbBundle.getMessage(ComboConstants.class, "COMBO_Issued_KeyType_Symmetric"); //NOI18N
157
String JavaDoc ISSUED_KEYTYPE_SYMMETRIC_POLICYSTR = NbBundle.getMessage(ComboConstants.class, "COMBO_Issued_KeyType_Symmetric_PolicyStr"); //NOI18N
158
String JavaDoc ISSUED_KEYTYPE_PUBLIC = NbBundle.getMessage(ComboConstants.class, "COMBO_Issued_KeyType_Public"); //NOI18N
159
String JavaDoc ISSUED_KEYTYPE_PUBLIC_POLICYSTR = NbBundle.getMessage(ComboConstants.class, "COMBO_Issued_KeyType_Public_PolicyStr"); //NOI18N
160

161     String JavaDoc ISSUED_KEYSIZE_128 = NbBundle.getMessage(ComboConstants.class, "COMBO_Issued_KeySize_128"); //NOI18N
162
String JavaDoc ISSUED_KEYSIZE_192 = NbBundle.getMessage(ComboConstants.class, "COMBO_Issued_KeySize_192"); //NOI18N
163
String JavaDoc ISSUED_KEYSIZE_256 = NbBundle.getMessage(ComboConstants.class, "COMBO_Issued_KeySize_256"); //NOI18N
164

165     String JavaDoc STATIC = NbBundle.getMessage(ComboConstants.class, "COMBO_Static"); //NOI18N
166
String JavaDoc DYNAMIC = NbBundle.getMessage(ComboConstants.class, "COMBO_Dynamic"); //NOI18N
167

168 }
169
Popular Tags