1 19 20 package org.netbeans.modules.websvc.wsitconf.ui; 21 22 import org.openide.util.NbBundle; 23 24 28 public interface ComboConstants { 29 30 String TX_REQUIRED = NbBundle.getMessage(ComboConstants.class, "COMBO_Required"); String TX_REQUIRESNEW = NbBundle.getMessage(ComboConstants.class, "COMBO_RequiresNew"); String TX_NOTSUPPORTED = NbBundle.getMessage(ComboConstants.class, "COMBO_NotSupported"); String TX_SUPPORTED = NbBundle.getMessage(ComboConstants.class, "COMBO_Supported"); String TX_MANDATORY = NbBundle.getMessage(ComboConstants.class, "COMBO_Mandatory"); String TX_NEVER = NbBundle.getMessage(ComboConstants.class, "COMBO_Never"); 38 String PROF_TRANSPORT = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_Transport"); String PROF_MSGAUTHSSL = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_MsgAuthSSL"); String PROF_SAMLSSL = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_SAMLSSL"); String PROF_USERNAME = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_Username"); String PROF_MUTUALCERT = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_MutualCert"); String PROF_ENDORSCERT = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_EndorsCert"); String PROF_SAMLSENDER = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_SamlSender"); String PROF_SAMLHOLDER = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_SamlHolder"); String PROF_KERBEROS = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_Kerberos"); String PROF_STSISSUED = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_STSIssued"); String PROF_STSISSUEDCERT = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_STSIssuedCert"); String PROF_STSISSUEDENDORSE = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_STSIssuedEndorse"); String PROF_GENERIC = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_Generic"); 53 String PROF_TRANSPORT_INFO = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_Transport_Info"); String PROF_MSGAUTHSSL_INFO = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_MsgAuthSSL_Info"); String PROF_SAMLSSL_INFO = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_SAMLSSL_Info"); String PROF_USERNAME_INFO = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_Username_Info"); String PROF_MUTUALCERT_INFO = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_MutualCert_Info"); String PROF_ENDORSCERT_INFO = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_EndorsCert_Info"); String PROF_SAMLSENDER_INFO = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_SamlSender_Info"); String PROF_SAMLHOLDER_INFO = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_SamlHolder_Info"); String PROF_KERBEROS_INFO = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_Kerberos_Info"); String PROF_STSISSUED_INFO = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_STSIssued_Info"); String PROF_STSISSUEDCERT_INFO = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_STSIssuedCert_Info"); String PROF_STSISSUEDENDORSE_INFO = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_STSIssuedEndorse_Info"); String PROF_GENERIC_INFO = NbBundle.getMessage(ComboConstants.class, "COMBO_Profile_Generic_Info"); 67 String ASYMMETRIC = NbBundle.getMessage(ComboConstants.class, "COMBO_Asymmetric"); String NOSECURITY = NbBundle.getMessage(ComboConstants.class, "COMBO_NoSecurity"); String SYMMETRIC = NbBundle.getMessage(ComboConstants.class, "COMBO_Symmetric"); String TRANSPORT = NbBundle.getMessage(ComboConstants.class, "COMBO_Transport"); 72 String USERNAME = NbBundle.getMessage(ComboConstants.class, "COMBO_UsernameToken"); 73 String X509 = NbBundle.getMessage(ComboConstants.class, "COMBO_X509Token"); 74 String SAML = NbBundle.getMessage(ComboConstants.class, "COMBO_SamlToken"); 75 String REL = NbBundle.getMessage(ComboConstants.class, "COMBO_RelToken"); 76 String KERBEROS = NbBundle.getMessage(ComboConstants.class, "COMBO_KerberosToken"); 77 String SECURITYCONTEXT = NbBundle.getMessage(ComboConstants.class, "COMBO_SecurityContextToken"); 78 String SECURECONVERSATION = NbBundle.getMessage(ComboConstants.class, "COMBO_SecureConversationToken"); 79 String ISSUED = NbBundle.getMessage(ComboConstants.class, "COMBO_IssuedToken"); 80 String SPNEGOCONTEXT = NbBundle.getMessage(ComboConstants.class, "COMBO_SpNegoContextToken"); 81 String HTTPS = NbBundle.getMessage(ComboConstants.class, "COMBO_HttpsToken"); 82 83 String PROTECTION = "protection"; String SIGNATURE = "signature"; String ENCRYPTION = "encryption"; String INITIATOR = "initiator"; String RECIPIENT = "recipient"; 89 String STRICT = NbBundle.getMessage(ComboConstants.class, "COMBO_Strict"); String LAX = NbBundle.getMessage(ComboConstants.class, "COMBO_Lax"); String LAXTSFIRST = NbBundle.getMessage(ComboConstants.class, "COMBO_LaxTsFirst"); String LAXTSLAST = NbBundle.getMessage(ComboConstants.class, "COMBO_LaxTsLast"); 94 String BASIC256 = NbBundle.getMessage(ComboConstants.class, "COMBO_Basic256"); String BASIC192 = NbBundle.getMessage(ComboConstants.class, "COMBO_Basic192"); String BASIC128 = NbBundle.getMessage(ComboConstants.class, "COMBO_Basic128"); String TRIPLEDES = NbBundle.getMessage(ComboConstants.class, "COMBO_TripleDes"); String BASIC256RSA15 = NbBundle.getMessage(ComboConstants.class, "COMBO_Basic256Rsa15"); String BASIC192RSA15 = NbBundle.getMessage(ComboConstants.class, "COMBO_Basic192Rsa15"); String BASIC128RSA15 = NbBundle.getMessage(ComboConstants.class, "COMBO_Basic128Rsa15"); String TRIPLEDESRSA15 = NbBundle.getMessage(ComboConstants.class, "COMBO_TripleDesRsa15"); String BASIC256SHA256 = NbBundle.getMessage(ComboConstants.class, "COMBO_Basic256Sha256"); String BASIC192SHA256 = NbBundle.getMessage(ComboConstants.class, "COMBO_Basic192Sha256"); String BASIC128SHA256 = NbBundle.getMessage(ComboConstants.class, "COMBO_Basic128Sha256"); String TRIPLEDESSHA256 = NbBundle.getMessage(ComboConstants.class, "COMBO_TripleDesSha256"); String BASIC256SHA256RSA15 = NbBundle.getMessage(ComboConstants.class, "COMBO_Basic256Sha256Rsa15"); String BASIC192SHA256RSA15 = NbBundle.getMessage(ComboConstants.class, "COMBO_Basic192Sha256Rsa15"); String BASIC128SHA256RSA15 = NbBundle.getMessage(ComboConstants.class, "COMBO_Basic128Sha256Rsa15"); String TRIPLEDESSHA256RSA15 = NbBundle.getMessage(ComboConstants.class, "COMBO_TripleDesSha256Rsa15"); 111 String SAML_V1011 = NbBundle.getMessage(ComboConstants.class, "COMBO_SAML1011"); 112 String SAML_V1010 = NbBundle.getMessage(ComboConstants.class, "COMBO_SAML1010"); 113 String SAML_V1110 = NbBundle.getMessage(ComboConstants.class, "COMBO_SAML1110"); 114 String SAML_V1111 = NbBundle.getMessage(ComboConstants.class, "COMBO_SAML1111"); 115 String SAML_V2011 = NbBundle.getMessage(ComboConstants.class, "COMBO_SAML2011"); 116 117 String X509_V110 = NbBundle.getMessage(ComboConstants.class, "COMBO_X509_V110"); 118 String X509_V310 = NbBundle.getMessage(ComboConstants.class, "COMBO_X509_V310"); 119 String X509_PKCS710 = NbBundle.getMessage(ComboConstants.class, "COMBO_X509_PKCS710"); 120 String X509_PKIPATHV110 = NbBundle.getMessage(ComboConstants.class, "COMBO_X509_PKIPATHV110"); 121 String X509_V111 = NbBundle.getMessage(ComboConstants.class, "COMBO_X509_V111"); 122 String X509_V311 = NbBundle.getMessage(ComboConstants.class, "COMBO_X509_V311"); 123 String X509_PKCS711 = NbBundle.getMessage(ComboConstants.class, "COMBO_X509_PKCS711"); 124 String X509_PKIPATHV111 = NbBundle.getMessage(ComboConstants.class, "COMBO_X509_PKIPATHV111"); 125 126 String KERBEROS_KERBEROS = NbBundle.getMessage(ComboConstants.class, "COMBO_Kerberos"); 127 String KERBEROS_KERBEROSGSS = NbBundle.getMessage(ComboConstants.class, "COMBO_Kerberos_GSS"); 128 129 String NONE = " "; 131 String NEVER = NbBundle.getMessage(ComboConstants.class, "COMBO_Never"); String ONCE = NbBundle.getMessage(ComboConstants.class, "COMBO_Once"); String ALWAYSRECIPIENT = NbBundle.getMessage(ComboConstants.class, "COMBO_AlwaysToRecipient"); String ALWAYS = NbBundle.getMessage(ComboConstants.class, "COMBO_Always"); 136 String NEVER_POLICYSTR = "http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/Never"; String ONCE_POLICYSTR = "http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/Once"; String ALWAYSRECIPIENT_POLICYSTR = "http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/AlwaysToRecipient"; String ALWAYS_POLICYSTR = "http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/Always"; 141 String WSS11 = NbBundle.getMessage(ComboConstants.class, "COMBO_WSS11"); String WSS10 = NbBundle.getMessage(ComboConstants.class, "COMBO_WSS10"); 144 String ASSYMETRIC_KEYS = NbBundle.getMessage(ComboConstants.class, "COMBO_AssymetricKeys"); String RANDOMSYMMETRIC_KEYS = NbBundle.getMessage(ComboConstants.class, "COMBO_RandomSymmetricKeys"); String ISSUEDSYMMETRIC_KEYS = NbBundle.getMessage(ComboConstants.class, "COMBO_IssuedSymmetricKeys"); String TRANSPORTPROTECTION = NbBundle.getMessage(ComboConstants.class, "COMBO_TransportProtection"); 149 String ISSUED_TOKENTYPE_SAML10 = NbBundle.getMessage(ComboConstants.class, "COMBO_Issued_TokenType_SAML10"); String ISSUED_TOKENTYPE_SAML10_POLICYSTR = NbBundle.getMessage(ComboConstants.class, "COMBO_Issued_TokenType_SAML10_PolicyStr"); String ISSUED_TOKENTYPE_SAML11 = NbBundle.getMessage(ComboConstants.class, "COMBO_Issued_TokenType_SAML11"); String ISSUED_TOKENTYPE_SAML11_POLICYSTR = NbBundle.getMessage(ComboConstants.class, "COMBO_Issued_TokenType_SAML11_PolicyStr"); String ISSUED_TOKENTYPE_SAML20 = NbBundle.getMessage(ComboConstants.class, "COMBO_Issued_TokenType_SAML20"); String ISSUED_TOKENTYPE_SAML20_POLICYSTR = NbBundle.getMessage(ComboConstants.class, "COMBO_Issued_TokenType_SAML20_PolicyStr"); 156 String ISSUED_KEYTYPE_SYMMETRIC = NbBundle.getMessage(ComboConstants.class, "COMBO_Issued_KeyType_Symmetric"); String ISSUED_KEYTYPE_SYMMETRIC_POLICYSTR = NbBundle.getMessage(ComboConstants.class, "COMBO_Issued_KeyType_Symmetric_PolicyStr"); String ISSUED_KEYTYPE_PUBLIC = NbBundle.getMessage(ComboConstants.class, "COMBO_Issued_KeyType_Public"); String ISSUED_KEYTYPE_PUBLIC_POLICYSTR = NbBundle.getMessage(ComboConstants.class, "COMBO_Issued_KeyType_Public_PolicyStr"); 161 String ISSUED_KEYSIZE_128 = NbBundle.getMessage(ComboConstants.class, "COMBO_Issued_KeySize_128"); String ISSUED_KEYSIZE_192 = NbBundle.getMessage(ComboConstants.class, "COMBO_Issued_KeySize_192"); String ISSUED_KEYSIZE_256 = NbBundle.getMessage(ComboConstants.class, "COMBO_Issued_KeySize_256"); 165 String STATIC = NbBundle.getMessage(ComboConstants.class, "COMBO_Static"); String DYNAMIC = NbBundle.getMessage(ComboConstants.class, "COMBO_Dynamic"); 168 } 169 | Popular Tags |