Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for custom (0.47 sec)

  1. src/main/java/jcifs/http/NtlmServlet.java

     * <tt>jcifs.smb.client.domain</tt> or <tt>jcifs.http.domainController</tt>
     * properties are be specified. <b>With later containers the
     * <tt>NtlmHttpFilter</tt> should be used</b>. For custom NTLM HTTP Authentication schemes the <tt>NtlmSsp</tt> may be
     * used.
     * <p>
     * Read <a href="../../../ntlmhttpauth.html">jCIFS NTLM HTTP Authentication and the Network Explorer Servlet</a> related
     * information.
     * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/Kerb5Authenticator.java

         */
        protected void setSubject ( Subject subject ) {
            this.subject = subject;
        }
    
    
        @Override
        public void refresh () throws CIFSException {
            // custom Kerb5Authenticators need to override this method for support
            throw new SmbUnsupportedOperationException("Refreshing credentials is not supported by this authenticator");
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 13K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/CommonServerMessageBlockRequest.java

         */
        boolean allowChain ( CommonServerMessageBlockRequest next );
    
    
        /**
         * @param t
         */
        void setTid ( int t );
    
    
        /**
         * 
         * @return custom response timeout for this request
         */
        Integer getOverrideTimeout ();
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/StaticJAASConfiguration.java

         */
        public StaticJAASConfiguration () {
            this.options = new HashMap<>();
        }
    
    
        /**
         * Initialize a static JAAS configuration with custom settings
         * 
         * @param options
         */
        public StaticJAASConfiguration ( Map<String, ?> options ) {
            this.options = options;
        }
    
    
        /**
         * {@inheritDoc}
         *
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/context/SingletonContext.java

        private static final Logger log = LoggerFactory.getLogger(SingletonContext.class);
        private static SingletonContext INSTANCE;
    
    
        /**
         * Initialize singleton context using custom properties
         * 
         * This method can only be called once.
         * 
         * @param props
         * @throws CIFSException
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jun 01 08:53:08 GMT 2019
    - 4.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/util/Crypto.java

                key8[ i ] ^= Integer.bitCount(key8[ i ] ^ 1) & 1;
            }
            return key8;
        }
    
        /**
         * Default provider is BouncyCastleProvider.
         * For registering custom provider
         * @see jcifs.util.Crypto#initProvider(Provider)
         * @return Provider
         */
        public static Provider getProvider() {
            if (provider != null) {
                return provider;
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Aug 17 17:34:29 GMT 2021
    - 5.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/http/NtlmServlet.java

     * <tt>jcifs.smb1.smb1.client.domain</tt> or <tt>jcifs.smb1.http.domainController</tt>
     * properties are be specified. <b>With later containers the
     * <tt>NtlmHttpFilter</tt> should be used/b>. For custom NTLM HTTP Authentication schemes the <tt>NtlmSsp</tt> may be used.
     * <p>
     * Read <a href="../../../ntlmhttpauth.html">jCIFS NTLM HTTP Authentication and the Network Explorer Servlet</a> related information.
     */
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 6.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/Configuration.java

    
        /**
         * 
         * Property <tt>jcifs.smb.client.capabilities</tt> (int)
         * 
         * @return custom capabilities
         */
        int getCapabilities ();
    
    
        /**
         * 
         * 
         * Property <tt>jcifs.smb.client.flags2</tt> (int)
         * 
         * @return custom flags2
         */
        int getFlags2 ();
    
    
        /**
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
Back to top