Searched refs:needClientAuth (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/GenSSLConfigs/
H A DServerHandler.java28 private boolean needClientAuth; field in class:ServerHandler
44 needClientAuth = flag;
H A DServerThread.java42 private boolean needClientAuth; field in class:ServerThread
67 { needClientAuth = flag; }
69 { return needClientAuth; }
106 if (needClientAuth)
145 handler.setNeedClientAuth (needClientAuth);
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DHttpsParameters.java57 private boolean needClientAuth; field in class:HttpsParameters
138 * this method clears the <code>needClientAuth</code> flag.
152 return needClientAuth;
159 * @param needClientAuth whether client authentication should be required
161 public void setNeedClientAuth(boolean needClientAuth) { argument
162 this.needClientAuth = needClientAuth;
/openjdk7/jdk/src/share/classes/javax/net/ssl/
H A DSSLParameters.java63 private boolean needClientAuth; field in class:SSLParameters
71 * wantClientAuth and needClientAuth are set to <code>false</code>.
161 * this method clears the <code>needClientAuth</code> flag.
167 this.needClientAuth = false;
176 return needClientAuth;
183 * @param needClientAuth whether client authentication should be required
185 public void setNeedClientAuth(boolean needClientAuth) { argument
187 this.needClientAuth = needClientAuth;
/openjdk7/jdk/src/share/classes/javax/rmi/ssl/
H A DSslRMIServerSocketFactory.java97 * @param needClientAuth <code>true</code> to require client
116 boolean needClientAuth)
118 this(null, enabledCipherSuites, enabledProtocols, needClientAuth);
142 * @param needClientAuth <code>true</code> to require client
163 boolean needClientAuth)
171 this.needClientAuth = needClientAuth;
248 return needClientAuth;
273 sslSocket.setNeedClientAuth(needClientAuth);
305 // needClientAuth fla
113 SslRMIServerSocketFactory( String[] enabledCipherSuites, String[] enabledProtocols, boolean needClientAuth) argument
159 SslRMIServerSocketFactory( SSLContext context, String[] enabledCipherSuites, String[] enabledProtocols, boolean needClientAuth) argument
374 private final boolean needClientAuth; field in class:SslRMIServerSocketFactory
[all...]
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/spi/
H A DProviderInit.java184 void communicate(SSLSocketFactory sslsf, boolean needClientAuth) argument
189 sslSocket.setNeedClientAuth(needClientAuth);

Completed in 83 milliseconds