Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getAuthType (0.04 sec)

  1. src/main/java/jcifs/smb1/http/NtlmHttpServletRequest.java

            this.principal = principal;
        }
        public String getRemoteUser() {
            return principal.getName();
        }
        public Principal getUserPrincipal() {
            return principal;
        }
        public String getAuthType() {
            return "NTLM";
        }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/http/NtlmHttpServletRequest.java

            return this.principal.getName();
        }
    
    
        @Override
        public Principal getUserPrincipal () {
            return this.principal;
        }
    
    
        @Override
        public String getAuthType () {
            return "NTLM";
        }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.5K bytes
    - Viewed (0)
Back to top