Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Credentials (0.16 sec)

  1. src/main/java/jcifs/context/BaseContext.java

     */
    package jcifs.context;
    
    
    import java.net.MalformedURLException;
    import java.net.URLStreamHandler;
    
    import jcifs.BufferCache;
    import jcifs.CIFSException;
    import jcifs.Configuration;
    import jcifs.Credentials;
    import jcifs.DfsResolver;
    import jcifs.NameServiceClient;
    import jcifs.SidResolver;
    import jcifs.SmbPipeResource;
    import jcifs.SmbResource;
    import jcifs.SmbTransportPool;
    import jcifs.netbios.NameServiceClientImpl;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 27 18:25:00 GMT 2022
    - 5.3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/ContextConfigTest.java

    import org.hamcrest.CoreMatchers;
    import org.junit.Assert;
    import org.junit.Before;
    import org.junit.Test;
    
    import jcifs.CIFSContext;
    import jcifs.CIFSException;
    import jcifs.Config;
    import jcifs.Credentials;
    import jcifs.DialectVersion;
    import jcifs.SmbResource;
    import jcifs.config.PropertyConfiguration;
    import jcifs.context.SingletonContext;
    import jcifs.smb.NtlmPasswordAuthenticator;
    import jcifs.smb.SmbFile;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 9.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbSessionImpl.java

                    if ( !this.getConfig().isAllowGuestFallback() && response.isLoggedInAsGuest()
                            && ! ( this.credentials.isGuest() || this.credentials.isAnonymous() ) ) {
                        throw new SmbAuthException(NtStatus.NT_STATUS_LOGON_FAILURE);
                    }
                    else if ( !this.credentials.isAnonymous() && response.isLoggedInAsGuest() ) {
                        anonymous = true;
                    }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
  4. src/main/java/jcifs/Configuration.java

        /**
         * 
         * 
         * Property <tt>jcifs.smb.client.domain</tt>
         * 
         * @return default credentials, domain name
         */
        String getDefaultDomain ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.username</tt>
         * 
         * @return default credentials, user name
         */
        String getDefaultUsername ();
    
    
        /**
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/SessionTest.java

    import org.junit.runners.Parameterized;
    import org.junit.runners.Parameterized.Parameters;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import jcifs.CIFSContext;
    import jcifs.CIFSException;
    import jcifs.Credentials;
    import jcifs.SmbResource;
    import jcifs.SmbTransport;
    import jcifs.config.DelegatingConfiguration;
    import jcifs.smb.NtStatus;
    import jcifs.smb.NtlmNtHashAuthenticator;
    import jcifs.smb.NtlmPasswordAuthentication;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 15.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * credentials with this file or pipe. This can be used to retrieve the
     * username for example:
     * <tt>
     * String username = f.getPrincipal().getName();
     * </tt>
     * The <tt>Principal</tt> object returned will never be <tt>null</tt>
     * however the username can be <tt>null</tt> indication anonymous
     * credentials were used (e.g. some IPC$ services).
     */
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  7. src/main/java/jcifs/pac/kerberos/KerberosCredentials.java

            Set<Object> serverPrivateCredentials = this.subject.getPrivateCredentials();
            for ( Object credential : serverPrivateCredentials )
                if ( credential instanceof KerberosKey )
                    if ( ( (KerberosKey) credential ).getKeyType() == keyType )
                        serverKey = (KerberosKey) credential;
    
            return serverKey;
        }
    
    
        public Subject getSubject () {
            return this.subject;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Oct 02 12:02:06 GMT 2023
    - 2.4K bytes
    - Viewed (0)
Back to top