Searched refs:protocol (Results 76 - 100 of 383) sorted by relevance

1234567891011>>

/openjdk9/jdk/src/java.base/share/classes/sun/net/www/protocol/http/ntlm/
H A DNTLMAuthenticationCallback.java26 package sun.net.www.protocol.http.ntlm;
/openjdk9/jdk/src/java.desktop/macosx/native/include/
H A Djawt_md.h61 * JAWT_SurfaceLayers protocol. Setting the layer property of this object will cause the
67 @protocol JAWT_SurfaceLayers
/openjdk9/jdk/src/java.security.jgss/share/classes/sun/security/jgss/
H A DHttpCaller.java28 import sun.net.www.protocol.http.HttpCallerInfo;
/openjdk9/jdk/src/java.security.sasl/share/classes/javax/security/sasl/
H A DSaslServerFactory.java61 * @param protocol The non-null string name of the protocol for which
92 String protocol,
90 createSaslServer( String mechanism, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh) argument
/openjdk9/jdk/src/java.smartcardio/share/classes/javax/smartcardio/
H A DCardTerminal.java70 * the specified protocol, this method returns the same Card object as
73 * @param protocol the protocol to use ("T=0", "T=1", or "T=CL"), or "*" to
74 * connect using any available protocol.
76 * @throws NullPointerException if protocol is null
77 * @throws IllegalArgumentException if protocol is an invalid protocol
81 * using the specified protocol or if a connection has previously been
82 * established using a different protocol
88 public abstract Card connect(String protocol) throw argument
[all...]
/openjdk9/jdk/src/jdk.internal.jvmstat/share/classes/
H A Dmodule-info.java47 sun.jvmstat.perfdata.monitor.protocol.file.MonitoredHostFileService,
48 sun.jvmstat.perfdata.monitor.protocol.local.MonitoredHostLocalService;
/openjdk9/jdk/src/java.security.sasl/share/classes/com/sun/security/sasl/digest/
H A DFactoryImpl.java66 String authorizationId, String protocol, String serverName,
82 protocol, serverName, props, cbh);
96 String protocol, String serverName, Map<String,?> props, CallbackHandler cbh)
109 return new DigestMD5Server(protocol, serverName, props, cbh);
65 createSaslClient(String[] mechs, String authorizationId, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh) argument
95 createSaslServer(String mech, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh) argument
/openjdk9/jdk/src/java.security.sasl/share/classes/com/sun/security/sasl/ntlm/
H A DFactoryImpl.java65 String authorizationId, String protocol, String serverName,
80 protocol, serverName, props, cbh);
94 String protocol, String serverName, Map<String,?> props, CallbackHandler cbh)
111 return new NTLMServer(mech, protocol, serverName, props, cbh);
64 createSaslClient(String[] mechs, String authorizationId, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh) argument
93 createSaslServer(String mech, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh) argument
/openjdk9/jdk/src/jdk.security.jgss/share/classes/com/sun/security/sasl/gsskerb/
H A DFactoryImpl.java55 String protocol,
65 protocol,
75 String protocol,
86 protocol,
53 createSaslClient(String[] mechs, String authorizationId, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh) argument
74 createSaslServer(String mech, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh) argument
/openjdk9/jdk/test/java/rmi/server/RMISocketFactory/useSocketFactory/unicast/
H A DUseCustomSocketFactory.java63 for (String protocol : protocols) {
69 registryPort, protocol);
70 System.err.println("\nusing protocol: " +
71 ("".equals(protocol) ? "none" : protocol));
/openjdk9/jdk/test/javax/management/remote/mandatory/connection/
H A DAddressableTest.java49 private static boolean isProtocolSupported(String protocol) { argument
50 if (protocol.equals("rmi"))
52 if (protocol.equals("iiop")) {
66 String protocol = protocols[i];
67 if (isProtocolSupported(protocol)) {
69 test(protocol, prefixes[i]);
77 System.out.format(">>> Test skipped for %s, protocol not supported%n",
78 protocol);
/openjdk9/jdk/src/java.base/share/classes/sun/net/util/
H A DURLUtil.java50 String protocol = url.getProtocol();
51 if (protocol != null) {
52 /* protocol is compared case-insensitive, so convert to lowercase */
53 protocol = protocol.toLowerCase();
54 strForm.append(protocol);
93 // If protocol is HTTP or HTTPS than use URLPermission object
/openjdk9/jdk/src/java.smartcardio/share/classes/sun/security/smartcardio/
H A DTerminalImpl.java59 public synchronized Card connect(String protocol) throws CardException { argument
67 if (protocol.equals("*") || protocol.equalsIgnoreCase(cardProto)) {
70 throw new CardException("Cannot connect using " + protocol
78 card = new CardImpl(this, protocol);
/openjdk9/jdk/test/java/rmi/server/RMISocketFactory/useSocketFactory/activatable/
H A DUseCustomSocketFactory.java48 static String[] protocol = new String[] { "", "compress", "xor" }; field in class:UseCustomSocketFactory
87 Echo[] echo = new Echo[protocol.length];
89 for (int i = 0; i < protocol.length; i++) {
97 protocol[i]);
99 System.err.println("\nusing protocol: " +
100 ("".equals(protocol[i]) ? "none" : protocol[i]));
158 System.err.println("\nusing protocol: " +
159 ("".equals(protocol[i]) ? "none" : protocol[
[all...]
/openjdk9/jdk/test/javax/security/sasl/Sasl/
H A DPassSysProps.java55 String protocol = "ldap";
69 protocol, serverName, (Map) sysprops, callbackHandler);
73 Sasl.createSaslServer(DIGEST, protocol, serverName, (Map) sysprops,
86 authorizationId, protocol, serverName, stringProps,
91 Sasl.createSaslServer(GSSAPI, protocol, serverName,
112 protocol, serverName, objProps, callbackHandler);
116 Sasl.createSaslServer(CRAM, protocol, serverName, objProps,
128 protocol, serverName, rawProps, callbackHandler);
132 Sasl.createSaslServer(CRAM, protocol, serverName, rawProps,
/openjdk9/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wscompile/
H A DWsgenOptions.java76 * protocol value
78 public String protocol = "soap1.1"; field in class:WsgenOptions
94 * Tells if user specified a specific protocol
160 protocol = value;
162 protocol = value.substring(0, index);
202 if (!protocols.contains(protocol)) {
203 throw new BadCommandLineException(WscompileMessages.WSGEN_INVALID_PROTOCOL(protocol, protocols));
209 if (protocol == null || protocol.equalsIgnoreCase(X_SOAP12) && !isExtensionMode()) {
213 if (nonstdProtocols.containsKey(protocol)
278 getBindingID(String protocol) argument
[all...]
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/impl/protocol/giopmsgheaders/
H A DIORAddressingInfoHelper.java26 package com.sun.corba.se.impl.protocol.giopmsgheaders;
30 * com/sun/corba/se/impl/protocol/giopmsgheaders/IORAddressingInfoHelper.java
40 public static void insert (org.omg.CORBA.Any a, com.sun.corba.se.impl.protocol.giopmsgheaders.IORAddressingInfo that)
48 public static com.sun.corba.se.impl.protocol.giopmsgheaders.IORAddressingInfo extract (org.omg.CORBA.Any a)
80 __typeCode = org.omg.CORBA.ORB.init ().create_struct_tc (com.sun.corba.se.impl.protocol.giopmsgheaders.IORAddressingInfoHelper.id (), "IORAddressingInfo", _members0);
93 public static com.sun.corba.se.impl.protocol.giopmsgheaders.IORAddressingInfo read (org.omg.CORBA.portable.InputStream istream)
95 com.sun.corba.se.impl.protocol.giopmsgheaders.IORAddressingInfo value = new com.sun.corba.se.impl.protocol.giopmsgheaders.IORAddressingInfo ();
101 public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.corba.se.impl.protocol.giopmsgheaders.IORAddressingInfo value)
/openjdk9/jdk/src/java.base/share/classes/sun/net/www/protocol/ftp/
H A DHandler.java30 package sun.net.www.protocol.ftp;
38 import sun.net.www.protocol.http.HttpURLConnection;
/openjdk9/jdk/src/java.base/share/classes/sun/net/www/protocol/https/
H A DHandler.java30 package sun.net.www.protocol.https;
37 public class Handler extends sun.net.www.protocol.http.Handler {
/openjdk9/jdk/src/java.security.sasl/share/classes/com/sun/security/sasl/
H A DServerFactoryImpl.java58 String protocol,
70 return new CramMD5Server(protocol, serverName, props, cbh);
57 createSaslServer(String mech, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh) argument
/openjdk9/jdk/src/jdk.jstatd/share/classes/
H A Dmodule-info.java46 sun.jvmstat.perfdata.monitor.protocol.rmi.MonitoredHostRmiService;
/openjdk9/jdk/test/java/net/URL/
H A DHandlerLoop.java38 new HandlerFactory("sun.net.www.protocol"));
51 public URLStreamHandler createURLStreamHandler(String protocol) { argument
52 String name = pkg + "." + protocol + ".Handler";
/openjdk9/jdk/test/java/rmi/server/RMISocketFactory/useSocketFactory/registry/
H A DHelloImpl.java64 String protocol = "";
66 protocol = args[0];
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/impl/protocol/
H A DINSServerRequestDispatcher.java32 package com.sun.corba.se.impl.protocol;
34 import com.sun.corba.se.pept.protocol.MessageMediator;
40 import com.sun.corba.se.spi.protocol.CorbaServerRequestDispatcher;
41 import com.sun.corba.se.spi.protocol.CorbaMessageMediator;
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/pept/transport/
H A DResponseWaitingRoom.java28 import com.sun.corba.se.pept.protocol.MessageMediator;

Completed in 281 milliseconds

1234567891011>>