Searched refs:HttpsConfigurator (Results 1 - 17 of 17) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DHttpsConfigurator.java50 * server.setHttpsConfigurator (new HttpsConfigurator(sslContext) {
70 public class HttpsConfigurator { class
79 public HttpsConfigurator (SSLContext context) { method in class:HttpsConfigurator
87 * Returns the SSLContext for this HttpsConfigurator.
H A DHttpsServer.java41 * A HttpsServer must have an associated {@link HttpsConfigurator} object
59 * The server must also have a HttpsConfigurator established with {@link #setHttpsConfigurator(HttpsConfigurator)}
74 * The server must have a HttpsConfigurator established with {@link #setHttpsConfigurator(HttpsConfigurator)}
93 * Sets this server's {@link HttpsConfigurator} object.
94 * @param config the HttpsConfigurator to set
97 public abstract void setHttpsConfigurator (HttpsConfigurator config) ;
100 * Gets this server's {@link HttpsConfigurator} object, if it has been set.
101 * @return the HttpsConfigurator fo
[all...]
H A DHttpsParameters.java36 * {@link HttpsConfigurator#configure(HttpsParameters)}
62 * Returns the HttpsConfigurator for this HttpsParameters.
64 public abstract HttpsConfigurator getHttpsConfigurator();
76 * by the HttpsConfigurator associated with this HttpsParameters.
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DHttpsServerImpl.java53 public void setHttpsConfigurator (HttpsConfigurator config) {
57 public HttpsConfigurator getHttpsConfigurator () {
H A DSSLStreams.java69 HttpsConfigurator cfg = server.getHttpsConfigurator();
74 private void configureEngine(HttpsConfigurator cfg, InetSocketAddress addr){
108 HttpsConfigurator cfg;
110 Parameters (HttpsConfigurator cfg, InetSocketAddress addr) {
117 public HttpsConfigurator getHttpsConfigurator() {
H A DServerImpl.java49 private HttpsConfigurator httpsConfig;
166 public void setHttpsConfigurator (HttpsConfigurator config) {
168 throw new NullPointerException ("null HttpsConfigurator");
177 public HttpsConfigurator getHttpsConfigurator () {
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/
H A DHttpsCreateSockTest.java53 import com.sun.net.httpserver.HttpsConfigurator;
129 httpsServer.setHttpsConfigurator(new HttpsConfigurator(SSLContext.getDefault()));
H A DHttpsSocketFacTest.java53 import com.sun.net.httpserver.HttpsConfigurator;
135 httpsServer.setHttpsConfigurator(new HttpsConfigurator(SSLContext.getDefault()));
/openjdk7/jdk/test/com/sun/net/httpserver/
H A DTest6a.java52 server.setHttpsConfigurator(new HttpsConfigurator (ssl));
H A DTest7a.java56 server.setHttpsConfigurator(new HttpsConfigurator (ssl));
H A DTest8a.java59 server.setHttpsConfigurator(new HttpsConfigurator (ssl));
H A DSelCacheTest.java69 s2.setHttpsConfigurator(new HttpsConfigurator (ctx));
H A DTest1.java76 s2.setHttpsConfigurator(new HttpsConfigurator (ctx));
H A DTest12.java66 s2.setHttpsConfigurator(new HttpsConfigurator (ctx));
H A DTest13.java75 s2.setHttpsConfigurator(new HttpsConfigurator (ctx));
H A DTest9.java63 s2.setHttpsConfigurator(new HttpsConfigurator (ctx));
H A DTest9a.java60 server.setHttpsConfigurator(new HttpsConfigurator (serverCtx));

Completed in 4764 milliseconds