Searched defs:useSsl (Results 1 - 3 of 3) 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...]
/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 39 milliseconds