Searched refs:protocol (Results 176 - 200 of 383) sorted by relevance

1234567891011>>

/openjdk9/jdk/src/java.base/share/classes/sun/net/www/protocol/http/
H A DHandler.java30 package sun.net.www.protocol.http;
H A DAuthenticationInfo.java26 package sun.net.www.protocol.http;
106 return protocol;
172 //return ("{"+type+":"+authScheme+":"+protocol+":"+host+":"+port+":"+realm+":"+path+"}");
184 /** The protocol/scheme (i.e. http or https ). Need to keep the caches
187 * For proxy authentication the protocol is not relevant.
189 String protocol; field in class:AuthenticationInfo
217 this.protocol = "";
242 this.protocol = url.getProtocol().toLowerCase();
345 * for preemptive header-setting. Note, the protocol field is always
358 * Used in response to a challenge. Note, the protocol fiel
[all...]
H A DNegotiateAuthentication.java26 package sun.net.www.protocol.http;
35 import static sun.net.www.protocol.http.AuthScheme.NEGOTIATE;
36 import static sun.net.www.protocol.http.AuthScheme.KERBEROS;
93 * Find out if the HttpCallerInfo supports Negotiate protocol.
118 * Find out if the HttpCallerInfo supports Negotiate protocol. In order to
/openjdk9/jdk/src/java.base/unix/classes/sun/net/www/protocol/http/ntlm/
H A DNTLMAuthentication.java26 package sun.net.www.protocol.http.ntlm;
41 import sun.net.www.protocol.http.AuthenticationInfo;
42 import sun.net.www.protocol.http.AuthScheme;
43 import sun.net.www.protocol.http.HttpURLConnection;
/openjdk9/jdk/src/java.base/share/classes/sun/net/www/protocol/jar/
H A DHandler.java26 package sun.net.www.protocol.jar;
99 String protocol = u.getProtocol();
100 if (protocol != null)
101 h += protocol.hashCode();
/openjdk9/jdk/src/java.base/share/classes/sun/net/www/protocol/https/
H A DAbstractDelegateHttpsURLConnection.java26 package sun.net.www.protocol.https;
36 import sun.net.www.protocol.http.HttpURLConnection;
42 * sun.net.www.protocol.http.HttpURLConnection by having this class
49 sun.net.www.protocol.http.Handler handler) throws IOException {
54 sun.net.www.protocol.http.Handler handler) throws IOException {
73 * the com.sun.ssl.internal.www.protocol.https handler reuses this
87 * the com.sun.ssl.internal.www.protocol.https handler reuses this
109 * the com.sun.ssl.internal.www.protocol.https handler reuses this
127 * the com.sun.ssl.internal.www.protocol.https handler reuses this
171 * Implements the HTTP protocol handle
[all...]
/openjdk9/jdk/src/java.base/windows/classes/sun/net/www/protocol/http/ntlm/
H A DNTLMAuthentication.java26 package sun.net.www.protocol.http.ntlm;
36 import sun.net.www.protocol.http.AuthenticationInfo;
37 import sun.net.www.protocol.http.AuthScheme;
38 import sun.net.www.protocol.http.HttpURLConnection;
/openjdk9/jdk/src/java.desktop/macosx/native/libawt_lwawt/awt/
H A DJavaAccessibilityAction.h30 @protocol JavaAccessibilityAction
/openjdk9/jdk/src/jdk.internal.jvmstat/share/classes/sun/jvmstat/perfdata/monitor/protocol/file/
H A DMonitoredHostProvider.java26 package sun.jvmstat.perfdata.monitor.protocol.file;
36 * <em>file:</em> protocol of the HotSpot PerfData monitoring implementation.
44 * The default polling interval. Not used by the <em>file:</em> protocol.
68 * Note - the <em>file:</em> protocol silently ignores the
87 * Note - the <em>file:</em> protocol currenly does not support
98 * Note - the <em>file:</em> protocol currenly does not support
109 * Note - the <em>file:</em> protocol currently does not support the
/openjdk9/jdk/src/java.management.rmi/share/classes/com/sun/jmx/remote/protocol/rmi/
H A DServerProvider.java26 package com.sun.jmx.remote.protocol.rmi;
/openjdk9/jdk/src/jdk.jstatd/share/classes/sun/jvmstat/perfdata/monitor/protocol/rmi/
H A DRemoteVmManager.java26 package sun.jvmstat.perfdata.monitor.protocol.rmi;
H A DPerfDataBuffer.java26 package sun.jvmstat.perfdata.monitor.protocol.rmi;
37 * protocol for the HotSpot PerfData monitoring implementation.
/openjdk9/hotspot/src/os/solaris/vm/
H A Dos_solaris.inline.hpp122 inline int os::socket(int domain, int type, int protocol) { argument
123 return ::socket(domain, type, protocol);
/openjdk9/jdk/src/java.naming/share/classes/com/sun/jndi/ldap/
H A DSimpleClientId.java45 String protocol, Control[] bindCtls, OutputStream trace,
48 super(version, hostname, port, protocol, bindCtls, trace,
44 SimpleClientId(int version, String hostname, int port, String protocol, Control[] bindCtls, OutputStream trace, String socketFactory, String username, Object passwd) argument
H A DLdapPoolManager.java76 "com.sun.jndi.ldap.connect.pool.protocol";
224 * - Pooling for the requested protocol (plain or ssl) is supported
229 String authMech, String protocol, Hashtable<?,?> env)
234 // Requesting plain protocol but it is not supported
235 || (protocol == null && !supportPlainProtocol)
237 // Requesting ssl protocol but it is not supported
238 || ("ssl".equalsIgnoreCase(protocol) && !supportSslProtocol)) {
240 d("Pooling disallowed due to tracing or unsupported pooling of protocol");
308 String authMech, Control[] ctls, String protocol, String user,
323 id = new ClientId(version, host, port, protocol,
228 isPoolingAllowed(String socketFactory, OutputStream trace, String authMech, String protocol, Hashtable<?,?> env) argument
306 getLdapClient(String host, int port, String socketFactory, int connTimeout, int readTimeout, OutputStream trace, int version, String authMech, Control[] ctls, String protocol, String user, Object passwd, Hashtable<?,?> env) argument
[all...]
/openjdk9/jdk/test/java/net/HttpURLConnection/SetAuthenticator/
H A DHTTPTestClient.java40 public static void connect(HttpProtocolType protocol, argument
47 final URL url = url(protocol, address, "/");
/openjdk9/jdk/test/javax/net/ssl/sanity/pluggability/
H A DCheckSSLContextExport.java43 public static void test(String protocol) throws Exception { argument
44 SSLContext mySSLContext = SSLContext.getInstance(protocol);
/openjdk9/jdk/test/javax/net/ssl/TLS/
H A DJSSEServer.java40 String protocol, String cipherSuite) throws Exception {
50 serverSocket.setEnabledProtocols(protocol.split(","));
39 JSSEServer(CipherTestUtils cipherTest, int serverPort, String protocol, String cipherSuite) argument
/openjdk9/jdk/test/sun/security/ssl/SSLEngineImpl/
H A DSSLEngineBadBufferArrayAccess.java164 for (String protocol : protocols) {
168 log("Testing " + protocol + ":true");
169 new SSLEngineBadBufferArrayAccess(protocol).runTest(true);
171 log("Testing " + protocol + ":false");
172 new SSLEngineBadBufferArrayAccess(protocol).runTest(false);
181 public SSLEngineBadBufferArrayAccess(String protocol) throws Exception { argument
202 SSLContext sslCtx = SSLContext.getInstance(protocol);
/openjdk9/jdk/src/demo/share/jfc/Metalworks/
H A DMetalworksPrefs.java165 JComboBox protocol = new JComboBox();
166 protocol.addItem("SMTP");
167 protocol.addItem("IMAP");
168 protocol.addItem("Other...");
170 protoPanel.add(protocol);
/openjdk9/jdk/src/java.base/share/classes/sun/net/www/http/
H A DKeepAliveCache.java286 private String protocol = null; field in class:KeepAliveKey
294 * @param url the URL containing the protocol, host and port information
297 this.protocol = url.getProtocol();
313 && protocol.equals(kae.protocol)
319 * concatenation of the protocol, host name and port.
323 String str = protocol+host+port;
/openjdk9/jdk/test/com/sun/net/httpserver/
H A DTest13.java122 String protocol; field in class:Test13.Runner
128 Runner (boolean fixedLen, String protocol, String root, int port, String f, int size) { argument
130 this.protocol=protocol;
139 URL url = new URL (protocol+"://localhost:"+port+"/test1/"+f);
/openjdk9/corba/src/java.corba/share/classes/sun/corba/
H A DOutputStreamFactory.java33 import com.sun.corba.se.impl.protocol.giopmsgheaders.Message;
35 import com.sun.corba.se.pept.protocol.MessageMediator;
40 import com.sun.corba.se.spi.protocol.CorbaMessageMediator;
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/impl/transport/
H A DCorbaContactInfoListImpl.java39 import com.sun.corba.se.spi.protocol.LocalClientRequestDispatcher;
40 import com.sun.corba.se.spi.protocol.LocalClientRequestDispatcherFactory;
45 import com.sun.corba.se.impl.protocol.NotLocalLocalCRDImpl;
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/impl/encoding/
H A DBufferManagerWriteCollect.java35 import com.sun.corba.se.impl.protocol.giopmsgheaders.Message;
37 import com.sun.corba.se.impl.protocol.giopmsgheaders.MessageBase;
38 import com.sun.corba.se.impl.protocol.giopmsgheaders.FragmentMessage;

Completed in 158 milliseconds

1234567891011>>