Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for transportContext (0.06 sec)

  1. src/main/java/jcifs/smb/Handler.java

        }
    
        /**
         * @return
         */
        private CIFSContext getTransportContext() {
            if (this.transportContext == null) {
                this.transportContext = SingletonContext.getInstance();
            }
            return this.transportContext;
        }
    
        @Override
        protected void parseURL(final URL u, String spec, final int start, int limit) {
            final String host = u.getHost();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/http/Handler.java

         * "java.protocol.handler.pkgs".
         */
        private static final String[] JVM_VENDOR_DEFAULT_PKGS = { "sun.net.www.protocol" };
    
        private static URLStreamHandlerFactory factory;
    
        private final CIFSContext transportContext;
    
        /**
         * Sets the URL stream handler factory for the environment. This
         * allows specification of the factory used in creating underlying
         * stream handlers. This can be called once per JVM instance.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/http/NtlmServlet.java

        private boolean insecureBasic;
    
        /** The authentication realm */
        private String realm;
    
        /** The CIFS context for transport operations */
        private CIFSContext transportContext;
    
        @Override
        public void init(final ServletConfig config) throws ServletException {
            super.init(config);
    
            final Properties p = new Properties();
            p.putAll(System.getProperties());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.1K bytes
    - Viewed (1)
Back to top