Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for dispoem (0.16 sec)

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

                log.debug("Failed to get info", e);
                return super.toString();
            }
        }
    
    
        @Override
        public void dispose () throws SmbException {
            if ( this.gssContext != null ) {
                try {
                    this.gssContext.dispose();
                }
                catch ( GSSException e ) {
                    throw new SmbException("Context disposal failed", e);
                }
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Aug 02 08:22:42 GMT 2018
    - 13.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/NtlmContext.java

                }
                throw new CIFSException("Invalid MIC");
            }
    
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.smb.SSPContext#dispose()
         */
        @Override
        public void dispose () throws SmbException {
            this.isEstablished = false;
            this.sealClientHandle = null;
            this.sealServerHandle = null;
            this.sealClientKey = null;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 15.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SpnegoContext.java

        @Override
        public String toString () {
            return "SPNEGO[" + this.mechContext + "]";
        }
    
    
        /**
         * 
         */
        @Override
        public void dispose () throws CIFSException {
            this.mechContext.dispose();
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Jan 04 04:18:31 GMT 2021
    - 14.8K bytes
    - Viewed (0)
Back to top