Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getRequestingURL (0.13 sec)

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

    
        /**
         * 
         * @return the default authentiucation credentials
         */
        public static NtlmAuthenticator getDefault () {
            return auth;
        }
    
    
        protected final String getRequestingURL () {
            return this.url;
        }
    
    
        protected final SmbAuthException getRequestingException () {
            return this.sae;
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/NtlmAuthenticator.java

     */
    
        public synchronized static void setDefault( NtlmAuthenticator a ) {
            if( auth != null ) {
                return;
            }
            auth = a;
        }
    
        protected final String getRequestingURL() {
            return url;
        }
        protected final SmbAuthException getRequestingException() {
            return sae;
        }
    
    /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Download.java

                if (getRequestorType() == RequestorType.PROXY) {
                    // Note: Do not use getRequestingProtocol() here, which is "http" even for HTTPS proxies.
                    String protocol = getRequestingURL().getProtocol();
                    String proxyUser = systemProperties.get(protocol + ".proxyUser");
                    if (proxyUser != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top