Searched defs:protocol (Results 176 - 200 of 239) sorted by relevance

12345678910

/openjdk7/jdk/src/share/classes/javax/management/remote/rmi/
H A DRMIServerImpl.java159 // Expected format is: "protocol-version implementation-name"
309 * <p>Returns the protocol string for this object. The string is
312 * @return the protocol string for this object.
470 private static synchronized String makeConnectionId(String protocol, argument
491 buf.append(protocol).append(":");
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/protocol/iiop/
H A DIIOPProxyImpl.java26 package com.sun.jmx.remote.protocol.iiop;
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DClientId.java37 * - protocol version number
59 final private String protocol; field in class:ClientId
71 ClientId(int version, String hostname, int port, String protocol, argument
76 this.protocol = protocol;
112 + (protocol != null ? protocol.hashCode() : 0)
129 && (protocol == other.protocol // null OK
130 || (protocol !
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/ntlm/
H A DNTLMClient.java107 * @param protocol non-null for Sasl, useless for NTLM
113 NTLMClient(String mech, String authzid, String protocol, String serverName, argument
H A DNTLMServer.java105 * @param protocol not null for Sasl, ignored in NTLM
112 NTLMServer(String mech, String protocol, String serverName, argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DWsgenOptions.java72 * protocol value
74 public String protocol = "soap1.1"; field in class:WsgenOptions
93 * Tells if user specified a specific protocol
156 protocol = value;
158 protocol = value.substring(0, index);
196 if (!protocols.contains(protocol)) {
197 throw new BadCommandLineException(WscompileMessages.WSGEN_INVALID_PROTOCOL(protocol, protocols));
203 if (protocol == null || protocol.equalsIgnoreCase(X_SOAP12) && !isExtensionMode()) {
207 if (nonstdProtocols.containsKey(protocol)
275 getBindingID(String protocol) argument
[all...]
/openjdk7/jdk/src/windows/classes/sun/net/www/protocol/http/ntlm/
H A DNTLMAuthSequence.java26 package sun.net.www.protocol.http.ntlm;
51 // Used by native code to indicate when a particular protocol sequence is completed
H A DNTLMAuthentication.java26 package sun.net.www.protocol.http.ntlm;
34 import sun.net.www.protocol.http.AuthenticationInfo;
35 import sun.net.www.protocol.http.AuthScheme;
36 import sun.net.www.protocol.http.HttpURLConnection;
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLEngineImpl/
H A DSSLEngineBadBufferArrayAccess.java148 for (String protocol : protocols) {
149 log("Testing " + protocol);
154 new SSLEngineBadBufferArrayAccess(protocol);
165 public SSLEngineBadBufferArrayAccess(String protocol) throws Exception { argument
181 SSLContext sslCtx = SSLContext.getInstance(protocol);
/openjdk7/jdk/test/sun/security/ssl/javax/net/ssl/NewAPIs/
H A DtestEnabledProtocols.java34 * 4478803 Need APIs to determine the protocol versions used in an SSL
36 * 4701722 protocol mismatch exceptions should be consistent between
53 * that sets up an SSLServerSocket supporting that protocol. Then run
55 * possible protocol combinataion. Verify that we get handshake
57 * successfully, verify that the negotiated protocol was correct.
269 String protocol) throws Exception {
274 this.protocolToUse = protocol;
306 ("expected protocol " + protocolToUse +
266 startClient(String[] enabledProtocol, String[] serverP, boolean eXception, String protocol) argument
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DNetClient.java38 public static NetClient getInstance(String protocol, String hostname, int port, argument
40 if (protocol.equals("TCP")) {
/openjdk7/jdk/src/share/classes/sun/security/smartcardio/
H A DCardImpl.java53 // protocol in use, one of SCARD_PROTOCOL_T0 and SCARD_PROTOCOL_T1
54 final int protocol; field in class:CardImpl
65 CardImpl(TerminalImpl terminal, String protocol) throws PCSCException { argument
69 if (protocol.equals("*")) {
71 } else if (protocol.equalsIgnoreCase("T=0")) {
73 } else if (protocol.equalsIgnoreCase("T=1")) {
75 } else if (protocol.equalsIgnoreCase("direct")) {
80 throw new IllegalArgumentException("Unsupported protocol " + protocol);
87 this.protocol
[all...]
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/protocol/local/
H A DMonitoredHostProvider.java26 package sun.jvmstat.perfdata.monitor.protocol.local;
36 * <em>local</em> protocol of the HotSpot PerfData monitoring implementation.
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/protocol/rmi/
H A DMonitoredHostProvider.java26 package sun.jvmstat.perfdata.monitor.protocol.rmi;
40 * <em>rmi</em> protocol of the HotSpot PerfData monitoring implementation.
H A DRemoteMonitoredVm.java26 package sun.jvmstat.perfdata.monitor.protocol.rmi;
40 * <em>rmi:</em> protocol for the HotSpot PerfData monitoring implementation.
/openjdk7/jdk/src/share/classes/sun/net/spi/
H A DDefaultProxySelector.java45 * provides backward compatibility with the old http protocol handler
48 * Most of the implementation copied from the old http protocol handler
58 * support for each given protocol.
60 * - 1 row per protocol (http, ftp, ...)
61 * - 1st element of each row is the protocol name
76 * protocol, Property prefix 1, Property prefix 2, ...
106 * it's not necessary. Therefore we do cache the result, on a per-protocol
143 String protocol = uri.getScheme();
169 if (protocol == null || host == null) {
170 throw new IllegalArgumentException("protocol
332 defaultPort(String protocol) argument
349 getSystemProxy(String protocol, String host) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/net/www/http/
H A DKeepAliveCache.java296 private String protocol = null; field in class:KeepAliveKey
304 * @param url the URL containing the protocol, host and port information
307 this.protocol = url.getProtocol();
323 && protocol.equals(kae.protocol)
329 * concatenation of the protocol, host name and port.
333 String str = protocol+host+port;
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/file/
H A DFileURLConnection.java32 package sun.net.www.protocol.file;
/openjdk7/jdk/src/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...]
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/jar/
H A DURLJarFile.java26 package sun.net.www.protocol.jar;
/openjdk7/jdk/src/solaris/classes/sun/net/www/protocol/http/ntlm/
H A DNTLMAuthentication.java26 package sun.net.www.protocol.http.ntlm;
38 import sun.net.www.protocol.http.AuthenticationInfo;
39 import sun.net.www.protocol.http.AuthScheme;
40 import sun.net.www.protocol.http.HttpURLConnection;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/utils/
H A DSecuritySupport.java224 * Check the protocol used in the systemId against allowed protocols
228 * @param accessAny keyword to indicate allowing any protocol
229 * @return the name of the protocol if rejected, null otherwise
236 String protocol;
238 protocol = "file";
241 protocol = url.getProtocol();
242 if (protocol.equalsIgnoreCase("jar")) {
244 protocol = path.substring(0, path.indexOf(":"));
248 if (isProtocolAllowed(protocol, allowedProtocols)) {
252 return protocol;
264 isProtocolAllowed(String protocol, String allowedProtocols) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/utils/
H A DSecuritySupport.java218 * Check the protocol used in the systemId against allowed protocols
222 * @param accessAny keyword to indicate allowing any protocol
223 * @return the name of the protocol if rejected, null otherwise
230 String protocol;
232 protocol = "file";
235 protocol = url.getProtocol();
236 if (protocol.equalsIgnoreCase("jar")) {
238 protocol = path.substring(0, path.indexOf(":"));
242 if (isProtocolAllowed(protocol, allowedProtocols)) {
246 return protocol;
258 isProtocolAllowed(String protocol, String allowedProtocols) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/
H A DCorbaClientDelegateImpl.java26 package com.sun.corba.se.impl.protocol;
52 import com.sun.corba.se.pept.protocol.ClientInvocationInfo;
53 import com.sun.corba.se.pept.protocol.ClientRequestDispatcher;
62 import com.sun.corba.se.spi.protocol.CorbaClientDelegate ;
68 import com.sun.corba.se.impl.protocol.CorbaInvocationInfo;
H A DCorbaClientRequestDispatcherImpl.java33 package com.sun.corba.se.impl.protocol;
67 import com.sun.corba.se.pept.protocol.ClientRequestDispatcher;
68 import com.sun.corba.se.pept.protocol.MessageMediator;
82 import com.sun.corba.se.spi.protocol.CorbaMessageMediator;
83 import com.sun.corba.se.spi.protocol.RequestDispatcherRegistry;
109 import com.sun.corba.se.impl.protocol.giopmsgheaders.ReplyMessage;
110 import com.sun.corba.se.impl.protocol.giopmsgheaders.KeyAddr;
111 import com.sun.corba.se.impl.protocol.giopmsgheaders.ProfileAddr;
112 import com.sun.corba.se.impl.protocol.giopmsgheaders.ReferenceAddr;

Completed in 112 milliseconds

12345678910