Source Code Cross Referenced for ComboConstants.java in  » IDE-Netbeans » web.core » org » netbeans » modules » websvc » wsitconf » ui » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » IDE Netbeans » web.core » org.netbeans.modules.websvc.wsitconf.ui 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003:         *
004:         * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005:         *
006:         * The contents of this file are subject to the terms of either the GNU
007:         * General Public License Version 2 only ("GPL") or the Common
008:         * Development and Distribution License("CDDL") (collectively, the
009:         * "License"). You may not use this file except in compliance with the
010:         * License. You can obtain a copy of the License at
011:         * http://www.netbeans.org/cddl-gplv2.html
012:         * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
013:         * specific language governing permissions and limitations under the
014:         * License.  When distributing the software, include this License Header
015:         * Notice in each file and include the License file at
016:         * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
017:         * particular file as subject to the "Classpath" exception as provided
018:         * by Sun in the GPL Version 2 section of the License file that
019:         * accompanied this code. If applicable, add the following below the
020:         * License Header, with the fields enclosed by brackets [] replaced by
021:         * your own identifying information:
022:         * "Portions Copyrighted [year] [name of copyright owner]"
023:         *
024:         * Contributor(s):
025:         *
026:         * The Original Software is NetBeans. The Initial Developer of the Original
027:         * Software is Sun Microsystems, Inc. Portions Copyright 2006 Sun
028:         * Microsystems, Inc. All Rights Reserved.
029:         *
030:         * If you wish your version of this file to be governed by only the CDDL
031:         * or only the GPL Version 2, indicate your decision by adding
032:         * "[Contributor] elects to include this software in this distribution
033:         * under the [CDDL or GPL Version 2] license." If you do not indicate a
034:         * single choice of license, a recipient has the option to distribute
035:         * your version of this file under either the CDDL, the GPL Version 2 or
036:         * to extend the choice of license to its licensees as provided above.
037:         * However, if you add GPL Version 2 code and therefore, elected the GPL
038:         * Version 2 license, then the option applies only if the new code is
039:         * made subject to such option by the copyright holder.
040:         */
041:
042:        package org.netbeans.modules.websvc.wsitconf.ui;
043:
044:        import org.openide.util.NbBundle;
045:
046:        /**
047:         *
048:         * @author MartinG
049:         */
050:        public interface ComboConstants {
051:
052:            //Transaction Constants
053:            String TX_REQUIRED = NbBundle.getMessage(ComboConstants.class,
054:                    "COMBO_Required"); //NOI18N
055:            String TX_REQUIRESNEW = NbBundle.getMessage(ComboConstants.class,
056:                    "COMBO_RequiresNew"); //NOI18N
057:            String TX_NOTSUPPORTED = NbBundle.getMessage(ComboConstants.class,
058:                    "COMBO_NotSupported"); //NOI18N
059:            String TX_SUPPORTED = NbBundle.getMessage(ComboConstants.class,
060:                    "COMBO_Supported"); //NOI18N
061:            String TX_MANDATORY = NbBundle.getMessage(ComboConstants.class,
062:                    "COMBO_Mandatory"); //NOI18N
063:            String TX_NEVER = NbBundle.getMessage(ComboConstants.class,
064:                    "COMBO_Never"); //NOI18N
065:
066:            // Security Profiles
067:            String PROF_TRANSPORT = NbBundle.getMessage(ComboConstants.class,
068:                    "COMBO_Profile_Transport"); //NOI18N
069:            String PROF_MSGAUTHSSL = NbBundle.getMessage(ComboConstants.class,
070:                    "COMBO_Profile_MsgAuthSSL"); //NOI18N
071:            String PROF_SAMLSSL = NbBundle.getMessage(ComboConstants.class,
072:                    "COMBO_Profile_SAMLSSL"); //NOI18N
073:            String PROF_USERNAME = NbBundle.getMessage(ComboConstants.class,
074:                    "COMBO_Profile_Username"); //NOI18N
075:            String PROF_MUTUALCERT = NbBundle.getMessage(ComboConstants.class,
076:                    "COMBO_Profile_MutualCert"); //NOI18N
077:            String PROF_ENDORSCERT = NbBundle.getMessage(ComboConstants.class,
078:                    "COMBO_Profile_EndorsCert"); //NOI18N
079:            String PROF_SAMLSENDER = NbBundle.getMessage(ComboConstants.class,
080:                    "COMBO_Profile_SamlSender"); //NOI18N
081:            String PROF_SAMLHOLDER = NbBundle.getMessage(ComboConstants.class,
082:                    "COMBO_Profile_SamlHolder"); //NOI18N
083:            String PROF_KERBEROS = NbBundle.getMessage(ComboConstants.class,
084:                    "COMBO_Profile_Kerberos"); //NOI18N
085:            String PROF_STSISSUED = NbBundle.getMessage(ComboConstants.class,
086:                    "COMBO_Profile_STSIssued"); //NOI18N
087:            String PROF_STSISSUEDCERT = NbBundle.getMessage(
088:                    ComboConstants.class, "COMBO_Profile_STSIssuedCert"); //NOI18N
089:            String PROF_STSISSUEDENDORSE = NbBundle.getMessage(
090:                    ComboConstants.class, "COMBO_Profile_STSIssuedEndorse"); //NOI18N
091:            String PROF_GENERIC = NbBundle.getMessage(ComboConstants.class,
092:                    "COMBO_Profile_Generic"); //NOI18N
093:
094:            String PROF_TRANSPORT_INFO = NbBundle.getMessage(
095:                    ComboConstants.class, "COMBO_Profile_Transport_Info"); //NOI18N
096:            String PROF_MSGAUTHSSL_INFO = NbBundle.getMessage(
097:                    ComboConstants.class, "COMBO_Profile_MsgAuthSSL_Info"); //NOI18N
098:            String PROF_SAMLSSL_INFO = NbBundle.getMessage(
099:                    ComboConstants.class, "COMBO_Profile_SAMLSSL_Info"); //NOI18N
100:            String PROF_USERNAME_INFO = NbBundle.getMessage(
101:                    ComboConstants.class, "COMBO_Profile_Username_Info"); //NOI18N
102:            String PROF_MUTUALCERT_INFO = NbBundle.getMessage(
103:                    ComboConstants.class, "COMBO_Profile_MutualCert_Info"); //NOI18N
104:            String PROF_ENDORSCERT_INFO = NbBundle.getMessage(
105:                    ComboConstants.class, "COMBO_Profile_EndorsCert_Info"); //NOI18N
106:            String PROF_SAMLSENDER_INFO = NbBundle.getMessage(
107:                    ComboConstants.class, "COMBO_Profile_SamlSender_Info"); //NOI18N
108:            String PROF_SAMLHOLDER_INFO = NbBundle.getMessage(
109:                    ComboConstants.class, "COMBO_Profile_SamlHolder_Info"); //NOI18N
110:            String PROF_KERBEROS_INFO = NbBundle.getMessage(
111:                    ComboConstants.class, "COMBO_Profile_Kerberos_Info"); //NOI18N
112:            String PROF_STSISSUED_INFO = NbBundle.getMessage(
113:                    ComboConstants.class, "COMBO_Profile_STSIssued_Info"); //NOI18N
114:            String PROF_STSISSUEDCERT_INFO = NbBundle.getMessage(
115:                    ComboConstants.class, "COMBO_Profile_STSIssuedCert_Info"); //NOI18N
116:            String PROF_STSISSUEDENDORSE_INFO = NbBundle
117:                    .getMessage(ComboConstants.class,
118:                            "COMBO_Profile_STSIssuedEndorse_Info"); //NOI18N
119:            String PROF_GENERIC_INFO = NbBundle.getMessage(
120:                    ComboConstants.class, "COMBO_Profile_Generic_Info"); //NOI18N
121:
122:            String ASYMMETRIC = NbBundle.getMessage(ComboConstants.class,
123:                    "COMBO_Asymmetric"); //NOI18N
124:            String NOSECURITY = NbBundle.getMessage(ComboConstants.class,
125:                    "COMBO_NoSecurity"); //NOI18N
126:            String SYMMETRIC = NbBundle.getMessage(ComboConstants.class,
127:                    "COMBO_Symmetric"); //NOI18N
128:            String TRANSPORT = NbBundle.getMessage(ComboConstants.class,
129:                    "COMBO_Transport"); //NOI18N
130:
131:            String USERNAME = NbBundle.getMessage(ComboConstants.class,
132:                    "COMBO_UsernameToken");
133:            String X509 = NbBundle.getMessage(ComboConstants.class,
134:                    "COMBO_X509Token");
135:            String SAML = NbBundle.getMessage(ComboConstants.class,
136:                    "COMBO_SamlToken");
137:            String REL = NbBundle.getMessage(ComboConstants.class,
138:                    "COMBO_RelToken");
139:            String KERBEROS = NbBundle.getMessage(ComboConstants.class,
140:                    "COMBO_KerberosToken");
141:            String SECURITYCONTEXT = NbBundle.getMessage(ComboConstants.class,
142:                    "COMBO_SecurityContextToken");
143:            String SECURECONVERSATION = NbBundle.getMessage(
144:                    ComboConstants.class, "COMBO_SecureConversationToken");
145:            String ISSUED = NbBundle.getMessage(ComboConstants.class,
146:                    "COMBO_IssuedToken");
147:            String SPNEGOCONTEXT = NbBundle.getMessage(ComboConstants.class,
148:                    "COMBO_SpNegoContextToken");
149:            String HTTPS = NbBundle.getMessage(ComboConstants.class,
150:                    "COMBO_HttpsToken");
151:
152:            String PROTECTION = "protection"; //NOI18N
153:            String SIGNATURE = "signature"; //NOI18N
154:            String ENCRYPTION = "encryption"; //NOI18N
155:            String INITIATOR = "initiator"; //NOI18N
156:            String RECIPIENT = "recipient"; //NOI18N
157:
158:            String STRICT = NbBundle.getMessage(ComboConstants.class,
159:                    "COMBO_Strict"); //NOI18N
160:            String LAX = NbBundle.getMessage(ComboConstants.class, "COMBO_Lax"); //NOI18N
161:            String LAXTSFIRST = NbBundle.getMessage(ComboConstants.class,
162:                    "COMBO_LaxTsFirst"); //NOI18N
163:            String LAXTSLAST = NbBundle.getMessage(ComboConstants.class,
164:                    "COMBO_LaxTsLast"); //NOI18N
165:
166:            String BASIC256 = NbBundle.getMessage(ComboConstants.class,
167:                    "COMBO_Basic256"); //NOI18N
168:            String BASIC192 = NbBundle.getMessage(ComboConstants.class,
169:                    "COMBO_Basic192"); //NOI18N
170:            String BASIC128 = NbBundle.getMessage(ComboConstants.class,
171:                    "COMBO_Basic128"); //NOI18N
172:            String TRIPLEDES = NbBundle.getMessage(ComboConstants.class,
173:                    "COMBO_TripleDes"); //NOI18N
174:            String BASIC256RSA15 = NbBundle.getMessage(ComboConstants.class,
175:                    "COMBO_Basic256Rsa15"); //NOI18N
176:            String BASIC192RSA15 = NbBundle.getMessage(ComboConstants.class,
177:                    "COMBO_Basic192Rsa15"); //NOI18N
178:            String BASIC128RSA15 = NbBundle.getMessage(ComboConstants.class,
179:                    "COMBO_Basic128Rsa15"); //NOI18N
180:            String TRIPLEDESRSA15 = NbBundle.getMessage(ComboConstants.class,
181:                    "COMBO_TripleDesRsa15"); //NOI18N
182:            String BASIC256SHA256 = NbBundle.getMessage(ComboConstants.class,
183:                    "COMBO_Basic256Sha256"); //NOI18N
184:            String BASIC192SHA256 = NbBundle.getMessage(ComboConstants.class,
185:                    "COMBO_Basic192Sha256"); //NOI18N
186:            String BASIC128SHA256 = NbBundle.getMessage(ComboConstants.class,
187:                    "COMBO_Basic128Sha256"); //NOI18N
188:            String TRIPLEDESSHA256 = NbBundle.getMessage(ComboConstants.class,
189:                    "COMBO_TripleDesSha256"); //NOI18N
190:            String BASIC256SHA256RSA15 = NbBundle.getMessage(
191:                    ComboConstants.class, "COMBO_Basic256Sha256Rsa15"); //NOI18N
192:            String BASIC192SHA256RSA15 = NbBundle.getMessage(
193:                    ComboConstants.class, "COMBO_Basic192Sha256Rsa15"); //NOI18N
194:            String BASIC128SHA256RSA15 = NbBundle.getMessage(
195:                    ComboConstants.class, "COMBO_Basic128Sha256Rsa15"); //NOI18N
196:            String TRIPLEDESSHA256RSA15 = NbBundle.getMessage(
197:                    ComboConstants.class, "COMBO_TripleDesSha256Rsa15"); //NOI18N
198:
199:            String SAML_V1011 = NbBundle.getMessage(ComboConstants.class,
200:                    "COMBO_SAML1011");
201:            String SAML_V1010 = NbBundle.getMessage(ComboConstants.class,
202:                    "COMBO_SAML1010");
203:            String SAML_V1110 = NbBundle.getMessage(ComboConstants.class,
204:                    "COMBO_SAML1110");
205:            String SAML_V1111 = NbBundle.getMessage(ComboConstants.class,
206:                    "COMBO_SAML1111");
207:            String SAML_V2011 = NbBundle.getMessage(ComboConstants.class,
208:                    "COMBO_SAML2011");
209:
210:            String X509_V110 = NbBundle.getMessage(ComboConstants.class,
211:                    "COMBO_X509_V110");
212:            String X509_V310 = NbBundle.getMessage(ComboConstants.class,
213:                    "COMBO_X509_V310");
214:            String X509_PKCS710 = NbBundle.getMessage(ComboConstants.class,
215:                    "COMBO_X509_PKCS710");
216:            String X509_PKIPATHV110 = NbBundle.getMessage(ComboConstants.class,
217:                    "COMBO_X509_PKIPATHV110");
218:            String X509_V111 = NbBundle.getMessage(ComboConstants.class,
219:                    "COMBO_X509_V111");
220:            String X509_V311 = NbBundle.getMessage(ComboConstants.class,
221:                    "COMBO_X509_V311");
222:            String X509_PKCS711 = NbBundle.getMessage(ComboConstants.class,
223:                    "COMBO_X509_PKCS711");
224:            String X509_PKIPATHV111 = NbBundle.getMessage(ComboConstants.class,
225:                    "COMBO_X509_PKIPATHV111");
226:
227:            String KERBEROS_KERBEROS = NbBundle.getMessage(
228:                    ComboConstants.class, "COMBO_Kerberos");
229:            String KERBEROS_KERBEROSGSS = NbBundle.getMessage(
230:                    ComboConstants.class, "COMBO_Kerberos_GSS");
231:
232:            String NONE = "       "; //NOI18N
233:
234:            String NEVER = NbBundle.getMessage(ComboConstants.class,
235:                    "COMBO_Never"); //NOI18N
236:            String ONCE = NbBundle.getMessage(ComboConstants.class,
237:                    "COMBO_Once"); //NOI18N
238:            String ALWAYSRECIPIENT = NbBundle.getMessage(ComboConstants.class,
239:                    "COMBO_AlwaysToRecipient"); //NOI18N
240:            String ALWAYS = NbBundle.getMessage(ComboConstants.class,
241:                    "COMBO_Always"); //NOI18N
242:
243:            String NEVER_POLICYSTR = "http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/Never"; //NOI18N
244:            String ONCE_POLICYSTR = "http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/Once"; //NOI18N
245:            String ALWAYSRECIPIENT_POLICYSTR = "http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/AlwaysToRecipient"; //NOI18N
246:            String ALWAYS_POLICYSTR = "http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/Always"; //NOI18N
247:
248:            String WSS11 = NbBundle.getMessage(ComboConstants.class,
249:                    "COMBO_WSS11"); //NOI18N
250:            String WSS10 = NbBundle.getMessage(ComboConstants.class,
251:                    "COMBO_WSS10"); //NOI18N
252:
253:            String ASSYMETRIC_KEYS = NbBundle.getMessage(ComboConstants.class,
254:                    "COMBO_AssymetricKeys"); //NOI18N
255:            String RANDOMSYMMETRIC_KEYS = NbBundle.getMessage(
256:                    ComboConstants.class, "COMBO_RandomSymmetricKeys"); //NOI18N
257:            String ISSUEDSYMMETRIC_KEYS = NbBundle.getMessage(
258:                    ComboConstants.class, "COMBO_IssuedSymmetricKeys"); //NOI18N
259:            String TRANSPORTPROTECTION = NbBundle.getMessage(
260:                    ComboConstants.class, "COMBO_TransportProtection"); //NOI18N
261:
262:            String ISSUED_TOKENTYPE_SAML10 = NbBundle.getMessage(
263:                    ComboConstants.class, "COMBO_Issued_TokenType_SAML10"); //NOI18N
264:            String ISSUED_TOKENTYPE_SAML10_POLICYSTR = NbBundle.getMessage(
265:                    ComboConstants.class,
266:                    "COMBO_Issued_TokenType_SAML10_PolicyStr"); //NOI18N
267:            String ISSUED_TOKENTYPE_SAML11 = NbBundle.getMessage(
268:                    ComboConstants.class, "COMBO_Issued_TokenType_SAML11"); //NOI18N
269:            String ISSUED_TOKENTYPE_SAML11_POLICYSTR = NbBundle.getMessage(
270:                    ComboConstants.class,
271:                    "COMBO_Issued_TokenType_SAML11_PolicyStr"); //NOI18N
272:            String ISSUED_TOKENTYPE_SAML20 = NbBundle.getMessage(
273:                    ComboConstants.class, "COMBO_Issued_TokenType_SAML20"); //NOI18N
274:            String ISSUED_TOKENTYPE_SAML20_POLICYSTR = NbBundle.getMessage(
275:                    ComboConstants.class,
276:                    "COMBO_Issued_TokenType_SAML20_PolicyStr"); //NOI18N
277:
278:            String ISSUED_KEYTYPE_SYMMETRIC = NbBundle.getMessage(
279:                    ComboConstants.class, "COMBO_Issued_KeyType_Symmetric"); //NOI18N
280:            String ISSUED_KEYTYPE_SYMMETRIC_POLICYSTR = NbBundle.getMessage(
281:                    ComboConstants.class,
282:                    "COMBO_Issued_KeyType_Symmetric_PolicyStr"); //NOI18N
283:            String ISSUED_KEYTYPE_PUBLIC = NbBundle.getMessage(
284:                    ComboConstants.class, "COMBO_Issued_KeyType_Public"); //NOI18N
285:            String ISSUED_KEYTYPE_PUBLIC_POLICYSTR = NbBundle.getMessage(
286:                    ComboConstants.class,
287:                    "COMBO_Issued_KeyType_Public_PolicyStr"); //NOI18N
288:
289:            String ISSUED_KEYSIZE_128 = NbBundle.getMessage(
290:                    ComboConstants.class, "COMBO_Issued_KeySize_128"); //NOI18N
291:            String ISSUED_KEYSIZE_192 = NbBundle.getMessage(
292:                    ComboConstants.class, "COMBO_Issued_KeySize_192"); //NOI18N
293:            String ISSUED_KEYSIZE_256 = NbBundle.getMessage(
294:                    ComboConstants.class, "COMBO_Issued_KeySize_256"); //NOI18N
295:
296:            String STATIC = NbBundle.getMessage(ComboConstants.class,
297:                    "COMBO_Static"); //NOI18N
298:            String DYNAMIC = NbBundle.getMessage(ComboConstants.class,
299:                    "COMBO_Dynamic"); //NOI18N
300:
301:            String MEX_NONE = NbBundle.getMessage(ComboConstants.class,
302:                    "COMBO_MEX_NONE"); //NOI18N
303:            String MEX_HTTP = NbBundle.getMessage(ComboConstants.class,
304:                    "COMBO_MEX_HTTP"); //NOI18N
305:            String MEX_HTTPS = NbBundle.getMessage(ComboConstants.class,
306:                    "COMBO_MEX_HTTPS"); //NOI18N
307:
308:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.