- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for URLStreamHandler (0.43 sec)
-
src/main/java/jcifs/smb1/http/Handler.java
return new NtlmHttpURLConnection((HttpURLConnection) url.openConnection()); } private static URLStreamHandler getDefaultStreamHandler(String protocol) throws IOException { synchronized (PROTOCOL_HANDLERS) { URLStreamHandler handler = (URLStreamHandler) PROTOCOL_HANDLERS.get(protocol); if (handler != null) return handler;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 6.1K bytes - Viewed (0) -
src/main/java/jcifs/http/Handler.java
import java.net.URL; import java.net.URLConnection; import java.net.URLStreamHandler; import java.net.URLStreamHandlerFactory; import java.util.HashMap; import java.util.Map; import java.util.StringTokenizer; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jcifs.CIFSContext; /** * A <code>URLStreamHandler</code> used to provide NTLM authentication
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/net/protocol/storage/Handler.java
*/ package org.codelibs.fess.net.protocol.storage; import java.io.IOException; import java.io.InputStream; import java.net.URL; import java.net.URLConnection; import java.net.URLStreamHandler; import java.security.InvalidKeyException; import java.security.NoSuchAlgorithmException; import org.codelibs.core.lang.StringUtil; import io.minio.GetObjectArgs; import io.minio.MinioClient;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 6.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/test/net/protocol/xxx4/Handler.java
*/ package org.codelibs.fess.test.net.protocol.xxx4; import java.io.IOException; import java.net.URL; import java.net.URLConnection; import java.net.URLStreamHandler; public class Handler extends URLStreamHandler { @Override protected URLConnection openConnection(URL u) throws IOException { return null; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Jun 18 00:44:11 UTC 2024 - 951 bytes - Viewed (0) -
src/test/java/org/codelibs/fess/test/net/protocol/xxx2/Handler.java
*/ package org.codelibs.fess.test.net.protocol.xxx2; import java.io.IOException; import java.net.URL; import java.net.URLConnection; import java.net.URLStreamHandler; public class Handler extends URLStreamHandler { public static final String PROTOCOL_TYPE = "file"; @Override protected URLConnection openConnection(URL u) throws IOException { return null; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Jun 18 00:44:11 UTC 2024 - 1007 bytes - Viewed (0) -
src/test/java/org/codelibs/fess/test/net/protocol/xxx3/Handler.java
*/ package org.codelibs.fess.test.net.protocol.xxx3; import java.io.IOException; import java.net.URL; import java.net.URLConnection; import java.net.URLStreamHandler; public class Handler extends URLStreamHandler { public static final String PROTOCOL_TYPE = "test"; @Override protected URLConnection openConnection(URL u) throws IOException { return null; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Jun 18 00:44:11 UTC 2024 - 1007 bytes - Viewed (0) -
src/main/java/jcifs/CIFSContext.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs; import java.net.URLStreamHandler; /** * Encapsulation of client context * * * A context holds the client configuration, shared services as well as the active credentials. *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.7K bytes - Viewed (0) -
src/test/java/org/codelibs/core/zip/ZipFileUtilTest.java
import java.net.URLConnection; import java.net.URLStreamHandler; import junit.framework.TestCase; /** * @author koichik */ public class ZipFileUtilTest extends TestCase { /** * @throws Exception */ public void testToJarFilePath() throws Exception { final URL url = new URL(null, "zip:/Program Files/foo.zip!/", new URLStreamHandler() { @Override
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Handler.java
*/ package jcifs.smb1.smb1; import java.net.URL; import java.net.URLConnection; import java.net.URLStreamHandler; import java.io.IOException; import java.io.UnsupportedEncodingException; import java.io.PrintStream; public class Handler extends URLStreamHandler { static final URLStreamHandler SMB_HANDLER = new Handler(); protected int getDefaultPort() { return SmbConstants.DEFAULT_PORT; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/test/net/protocol/xxx1/Handler.java
*/ package org.codelibs.fess.test.net.protocol.xxx1; import java.io.IOException; import java.net.URL; import java.net.URLConnection; import java.net.URLStreamHandler; public class Handler extends URLStreamHandler { public static final String PROTOCOL_TYPE = "web"; @Override protected URLConnection openConnection(URL u) throws IOException { return null; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Jun 18 00:44:11 UTC 2024 - 1006 bytes - Viewed (0)