Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for expiry (0.57 sec)

  1. src/main/java/jcifs/smb1/smb1/DosError.java

            "No process is on the other end of the pipe.",
            "More data is available.",
            "This user account has expired.",
            "The user is not allowed to log on from this workstation.",
            "The user is not allowed to log on at this time.",
            "The password of this user has expired.",
        };
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 4.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/util/transport/Transport.java

                    }
                }
            }
        }
    
        /* Build a connection. Only one thread will ever call this method at
         * any one time. If this method throws an exception or the connect timeout
         * expires an encapsulating TransportException will be thrown from connect
         * and the transport will be in error.
         */
    
        protected abstract void doConnect() throws Exception;
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9K bytes
    - Viewed (0)
  3. src/test/java/jcifs/tests/KerberosTest.java

            PrincipalName principalName = convertPrincipal(principal);
            KrbAsReqBuilder builder = new KrbAsReqBuilder(principalName, password != null ? password.toCharArray() : new char[0]);
    
            if ( expire != null ) {
                System.out.println("Request expires " + expire);
                KerberosTime till = new KerberosTime(expire);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Mar 01 09:46:04 GMT 2020
    - 11.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/util/transport/Transport.java

                }
            }
    
        }
    
    
        /*
         * Build a connection. Only one thread will ever call this method at
         * any one time. If this method throws an exception or the connect timeout
         * expires an encapsulating TransportException will be thrown from connect
         * and the transport will be in error.
         */
    
        protected abstract void doConnect () throws Exception;
    
    
        /*
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Nov 01 18:12:21 GMT 2020
    - 24.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/DfsImpl.java

             */
            CacheEntry<DfsReferralDataInternal> links = roots.get(root);
            if ( links != null && now > links.expiration ) {
                if ( log.isDebugEnabled() ) {
                    log.debug("Removing expired " + links.map);
                }
                roots.remove(root);
                links = null;
            }
    
            if ( links == null ) {
                log.trace("Loadings roots");
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:07:29 GMT 2023
    - 29.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/DosError.java

            "No process is on the other end of the pipe.", "More data is available.", "This user account has expired.",
            "The user is not allowed to log on from this workstation.", "The user is not allowed to log on at this time.",
            "The password of this user has expired.",
        };
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 4.8K bytes
    - Viewed (1)
  7. src/main/java/jcifs/smb/NtStatus.java

        public static final int NT_STATUS_INVALID_LOGON_HOURS = 0xC000006f;
        public static final int NT_STATUS_INVALID_WORKSTATION = 0xC0000070;
        public static final int NT_STATUS_PASSWORD_EXPIRED = 0xC0000071;
        public static final int NT_STATUS_ACCOUNT_DISABLED = 0xC0000072;
        public static final int NT_STATUS_NONE_MAPPED = 0xC0000073;
        public static final int NT_STATUS_INVALID_SID = 0xC0000078;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Jun 01 10:09:29 GMT 2019
    - 11.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/dcerpc/msrpc/samr.idl

    		ACB_WSTRUST                = 0x00000080, /* 1 = Workstation trust account */
    		ACB_SVRTRUST               = 0x00000100, /* 1 = Server trust account */
    		ACB_PWNOEXP                = 0x00000200, /* 1 = User password does not expire */
    		ACB_AUTOLOCK               = 0x00000400, /* 1 = Account auto locked */
    		ACB_ENC_TXT_PWD_ALLOWED    = 0x00000800, /* 1 = Encryped text password is allowed */
    Others
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbTransportImpl.java

            case NtStatus.NT_STATUS_ACCOUNT_RESTRICTION:
            case NtStatus.NT_STATUS_INVALID_LOGON_HOURS:
            case NtStatus.NT_STATUS_INVALID_WORKSTATION:
            case NtStatus.NT_STATUS_PASSWORD_EXPIRED:
            case NtStatus.NT_STATUS_ACCOUNT_DISABLED:
            case NtStatus.NT_STATUS_ACCOUNT_LOCKED_OUT:
            case NtStatus.NT_STATUS_TRUSTED_DOMAIN_FAILURE:
                throw new SmbAuthException(resp.getErrorCode());
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbTransport.java

                case NtStatus.NT_STATUS_ACCOUNT_RESTRICTION:
                case NtStatus.NT_STATUS_INVALID_LOGON_HOURS:
                case NtStatus.NT_STATUS_INVALID_WORKSTATION:
                case NtStatus.NT_STATUS_PASSWORD_EXPIRED:
                case NtStatus.NT_STATUS_ACCOUNT_DISABLED:
                case NtStatus.NT_STATUS_ACCOUNT_LOCKED_OUT:
                case NtStatus.NT_STATUS_TRUSTED_DOMAIN_FAILURE:
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 31.2K bytes
    - Viewed (0)
Back to top