- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for getDefaultPort (0.11 sec)
-
src/main/java/jcifs/https/Handler.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Handler.java
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; } public URLConnection openConnection( URL u ) throws IOException { return new SmbFile( u ); }
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/main/java/jcifs/smb/Handler.java
*/ public Handler () {} /** * @param tc */ public Handler ( CIFSContext tc ) { this.transportContext = tc; } @Override protected int getDefaultPort () { return SmbConstants.DEFAULT_PORT; } @Override public URLConnection openConnection ( URL u ) throws IOException { if ( log.isDebugEnabled() ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jun 06 09:14:24 UTC 2020 - 2.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/Handler.java
Handler.factory = factory; } } /** * Returns the default HTTP port. * * @return An <code>int</code> containing the default HTTP port. */ protected int getDefaultPort() { return DEFAULT_HTTP_PORT; } protected URLConnection openConnection(URL url) throws IOException { url = new URL(url, url.toExternalForm(),
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/smb1/https/Handler.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/http/Handler.java
} /** * Returns the default HTTP port. * * @return An <code>int</code> containing the default HTTP port. */ @Override protected int getDefaultPort () { return DEFAULT_HTTP_PORT; } @Override protected URLConnection openConnection ( URL url ) throws IOException {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6.9K bytes - Viewed (0)