Searched refs:useSsl (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapURL.java70 private boolean useSsl = false; field in class:LdapURL
86 useSsl = scheme.equalsIgnoreCase("ldaps");
88 if (! (scheme.equalsIgnoreCase("ldap") || useSsl)) {
108 public boolean useSsl() { method in class:LdapURL
109 return useSsl;
176 static String toUrlString(String host, int port, String dn, boolean useSsl) argument
187 return useSsl ? "ldaps://" + h + p + d : "ldap://" + h + p + d;
H A DLdapCtx.java259 private boolean useSsl = false; // true if SSL protocol is active field in class:LdapCtx
276 boolean useSsl) throws NamingException {
278 this.useSsl = this.hasLdapsScheme = useSsl;
283 // SSL env prop overrides the useSsl argument
285 this.useSsl = true;
309 this.port_number = this.useSsl ? DEFAULT_SSL_PORT : DEFAULT_PORT;
328 useSsl = existing.useSsl;
2194 if (useSsl
275 LdapCtx(String dn, String host, int port_number, Hashtable props, boolean useSsl) argument
[all...]
H A DLdapCtxFactory.java193 ctx = new LdapCtx(dn, host, port, env, ldapUrl.useSsl());
/openjdk7/jdk/src/share/classes/com/sun/jndi/url/ldap/
H A DldapURLContextFactory.java60 env, ldapUrl.useSsl());
/openjdk7/jdk/test/sun/management/jmxremote/bootstrap/
H A DRmiSslNoKeyStoreTest.java224 final boolean useSsl =
227 log.debug("checkSslConfiguration",PropertyNames.USE_SSL+"="+useSsl);
228 if (useSsl == false) {
230 PropertyNames.USE_SSL+"="+useSsl+", can't run test";
H A DRmiBootstrapTest.java485 final boolean useSsl =
489 PropertyNames.USE_SSL+"="+useSsl+
517 if (useSsl) setSslProperties();
/openjdk7/jdk/src/share/classes/sun/management/jmxremote/
H A DConnectorBootstrap.java359 final boolean useSsl =
433 "\n\t" + PropertyNames.USE_SSL + "=" + useSsl +
458 mbs, port, rmiPort, useSsl, useRegistrySsl,
715 boolean useSsl,
760 if (useSsl || useRegistrySsl) {
767 if (useSsl) {
711 exportMBeanServer( MBeanServer mbs, int port, int rmiPort, boolean useSsl, boolean useRegistrySsl, String sslConfigFileName, String[] enabledCipherSuites, String[] enabledProtocols, boolean sslNeedClientAuth, boolean useAuthentication, String loginConfigName, String passwordFileName, String accessFileName) argument

Completed in 871 milliseconds