@@ -48,7 +48,7 @@ public class Realm {
48
48
private final String enc ;
49
49
private final String host ;
50
50
private final boolean messageType2Received ;
51
- private final String domain ;
51
+ private final String ntlmDomain ;
52
52
private final Charset charset ;
53
53
private final boolean useAbsoluteURI ;
54
54
private final boolean omitQuery ;
@@ -58,7 +58,7 @@ public enum AuthScheme {
58
58
}
59
59
60
60
private Realm (AuthScheme scheme , String principal , String password , String realmName , String nonce , String algorithm , String response ,
61
- String qop , String nc , String cnonce , String uri , String method , boolean usePreemptiveAuth , String domain , String enc ,
61
+ String qop , String nc , String cnonce , String uri , String method , boolean usePreemptiveAuth , String ntlmDomain , String enc ,
62
62
String host , boolean messageType2Received , String opaque , boolean useAbsoluteURI , boolean omitQuery ) {
63
63
64
64
this .principal = principal ;
@@ -75,7 +75,7 @@ private Realm(AuthScheme scheme, String principal, String password, String realm
75
75
this .uri = uri ;
76
76
this .methodName = method ;
77
77
this .usePreemptiveAuth = usePreemptiveAuth ;
78
- this .domain = domain ;
78
+ this .ntlmDomain = ntlmDomain ;
79
79
this .enc = enc ;
80
80
this .host = host ;
81
81
this .messageType2Received = messageType2Received ;
@@ -164,7 +164,7 @@ public boolean getUsePreemptiveAuth() {
164
164
* @return the NTLM domain
165
165
*/
166
166
public String getNtlmDomain () {
167
- return domain ;
167
+ return ntlmDomain ;
168
168
}
169
169
170
170
/**
0 commit comments