Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for retrieved (0.37 sec)

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

         * which hold TGT retrieved from KDC. If multiple TGT are contained, the
         * first one will be used to retrieve user principal.
         * 
         * @param subject
         *            represents the user who perform Kerberos authentication.
         *            It contains tickets retrieve from KDC.
         */
        public Kerb5Authenticator ( Subject subject ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 13K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/MIEName.java

    package jcifs.smb;
    
    
    import java.util.Objects;
    
    import org.bouncycastle.asn1.ASN1ObjectIdentifier;
    
    
    /**
     * This class is used to parse the name of context initiator and
     * context acceptor which are retrieved from GSSContext.
     * 
     * @author Shun
     *
     */
    class MIEName {
    
        private static byte[] TOK_ID = {
            04, 01
        };
        private static int TOK_ID_SIZE = 2;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/netbios/NbtAddress.java

            return CLIENT.getAllByName( new Name( host, type, scope ), svr );
        }
    
    /**
     * Retrieve all addresses of a host by it's address. NetBIOS hosts can
     * have many names for a given IP address. The name and IP address make the
     * NetBIOS address. This provides a way to retrieve the other names for a
     * host with the same IP address.
     *
     * @param host hostname to lookup all addresses for
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 30.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/NbtAddress.java

         * address, isPermanent, isBeingDeleted, ...etc. This information can only
         * be retrieved with the Node Status request.
         * 
         * The degree of state that an NbtAddress has is dependant on how it was
         * created and what is required of it. The second degree of state is the
         * most common. This is the state information that would be retrieved from
         * WINS for example. Natrually it is not practical for every NbtAddress
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 15.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/SidResolver.java

         * given user when the target object's ACL has local groups. Local groups
         * are not listed in a user's group membership (e.g. as represented by the
         * tokenGroups constructed attribute retrieved via LDAP).
         * <p/>
         * Domain groups nested inside a local group are currently not expanded. In
         * this case the key (SID) type will be SID_TYPE_DOM_GRP rather than
         * SID_TYPE_USER.
         * 
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

    import java.util.Random;
    
    import jcifs.smb1.Config;
    import jcifs.smb1.util.*;
    
    import java.util.Arrays;
    
    /**
     * This class stores and encrypts NTLM user credentials. The default
     * credentials are retrieved from the <tt>jcifs.smb1.smb1.client.domain</tt>,
     * <tt>jcifs.smb1.smb1.client.username</tt>, and <tt>jcifs.smb1.smb1.client.password</tt>
     * properties.
     * <p>
     * Read <a href="../../../authhandler.html">jCIFS Exceptions and
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 22.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/NtStatus.java

            "Indicates a Windows NT Server could not be contacted or that objects within the domain are protected such that necessary information could not be retrieved.",
            "The specified domain did not exist.",
            "The directory name is invalid.",
            "Access is denied.",
            "The format of the specified computer name is invalid.",
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/NtlmPasswordAuthentication.java

    
    import java.security.GeneralSecurityException;
    import java.util.Arrays;
    
    import jcifs.CIFSContext;
    
    
    /**
     * This class stores and encrypts NTLM user credentials. The default
     * credentials are retrieved from the <tt>jcifs.smb.client.domain</tt>,
     * <tt>jcifs.smb.client.username</tt>, and <tt>jcifs.smb.client.password</tt>
     * properties.
     * <p>
     * Read <a href="../../../authhandler.html">jCIFS Exceptions and
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 8.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/SmbResourceLocator.java

         */
        String getShare ();
    
    
        /**
         * Retrieve the hostname of the server for this SMB resource. If the resources has been resolved by DFS this will
         * return the target name.
         * 
         * @return The server name
         */
        String getServerWithDfs ();
    
    
        /**
         * Retrieve the hostname of the server for this SMB resource. If this
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/Config.java

         *     ...
         * </pre>
         * 
         * <blockquote>
         */
        public static void registerSmbURLHandler () {
            SingletonContext.registerSmbURLHandler();
        }
    
    
        /**
         * Retrieve an <code>int</code>. If the key does not exist or
         * cannot be converted to an <code>int</code>, the provided default
         * argument will be returned.
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.3K bytes
    - Viewed (0)
Back to top