Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for Fang (0.16 sec)

  1. src/main/java/jcifs/CloseableIterator.java

    
    /**
     * @author mbechler
     * @param <T>
     *
     */
    public interface CloseableIterator <T> extends Iterator<T>, AutoCloseable {
    
        /**
         * {@inheritDoc}
         *
         * @see java.lang.AutoCloseable#close()
         */
        @Override
        void close () throws CIFSException;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SmbFileHandle.java

    
        /**
         * @param lastWriteTime
         * @throws CIFSException
         */
        void close ( long lastWriteTime ) throws CIFSException;
    
    
        /**
         * {@inheritDoc}
         *
         * @see java.lang.AutoCloseable#close()
         */
        @Override
        void close () throws CIFSException;
    
    
        /**
         * @throws CIFSException
         * 
         */
        void release () throws CIFSException;
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/SmbTransport.java

         * @param type
         * @return transport instance with the given type
         */
        <T extends SmbTransport> T unwrap ( Class<T> type );
    
    
        /**
         * 
         * {@inheritDoc}
         *
         * @see java.lang.AutoCloseable#close()
         */
        @Override
        public void close ();
    
    
        /**
         * @return the connected address
         */
        Address getRemoteAddress ();
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/StaticJAASConfiguration.java

            this.options = options;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see javax.security.auth.login.Configuration#getAppConfigurationEntry(java.lang.String)
         */
        @Override
        public AppConfigurationEntry[] getAppConfigurationEntry ( String name ) {
            return new AppConfigurationEntry[] {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  5. pom.xml

    							<className>jcifs/Configuration</className>
    							<differenceType>7012</differenceType>
    							<method>java.lang.String getGuestUsername()</method>
    						</difference>
    						<difference>
    							<className>jcifs/Configuration</className>
    							<differenceType>7012</differenceType>
    							<method>java.lang.String getGuestPassword()</method>
    						</difference>
    						<difference>
    							<className>jcifs/SmbResource</className>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 26 04:00:03 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/spnego/NegTokenInit.java

        }
    
    
        public void setMechanisms ( ASN1ObjectIdentifier[] mechanisms ) {
            this.mechanisms = mechanisms;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see java.lang.Object#toString()
         */
        @Override
        public String toString () {
            String mic = null;
            if ( this.getMechanismListMIC() != null ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Oct 01 12:01:17 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/netbios/UniAddress.java

                return (InetAddress) this.addr;
            }
            return null;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Address#unwrap(java.lang.Class)
         */
        @SuppressWarnings ( "unchecked" )
        @Override
        public <T extends Address> T unwrap ( Class<T> type ) {
            if ( this.addr instanceof Address ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/MIEName.java

        }
    
    
        MIEName ( ASN1ObjectIdentifier oid, String name ) {
            this.oid = oid;
            this.name = name;
        }
    
    
        /*
         * (non-Javadoc)
         * 
         * @see java.lang.Object#equals(java.lang.Object)
         */
        @Override
        public boolean equals ( Object other ) {
    
            if ( other instanceof MIEName ) {
                MIEName terg = (MIEName) other;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/context/AbstractCIFSContext.java

    
        /**
         * @return
         */
        protected abstract Credentials getDefaultCredentials ();
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.CIFSContext#renewCredentials(java.lang.String, java.lang.Throwable)
         */
        @Override
        public boolean renewCredentials ( String locationHint, Throwable error ) {
            return false;
        }
    
    
        /**
         * {@inheritDoc}
         * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 3.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/context/CIFSContextCredentialWrapper.java

         */
        @Override
        public Credentials getCredentials () {
            return this.creds;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.CIFSContext#renewCredentials(java.lang.String, java.lang.Throwable)
         */
        @Override
        public boolean renewCredentials ( String locationHint, Throwable error ) {
            Credentials cred = getCredentials();
            if ( cred instanceof SmbRenewableCredentials ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Aug 02 08:32:29 UTC 2018
    - 2.7K bytes
    - Viewed (0)
Back to top