@@ -51,7 +51,6 @@ public class Realm {
5151private final String nc ;
5252private final String cnonce ;
5353private final Uri uri ;
54- private final String methodName ;
5554private final boolean usePreemptiveAuth ;
5655private final Charset charset ;
5756private final String ntlmHost ;
@@ -60,7 +59,6 @@ public class Realm {
6059private final boolean omitQuery ;
6160
6261public enum AuthScheme {
63-
6462BASIC ,DIGEST ,NTLM ,SPNEGO ,KERBEROS
6563 }
6664
@@ -76,7 +74,6 @@ private Realm(AuthScheme scheme,//
7674String nc ,//
7775String cnonce ,//
7876Uri uri ,//
79- String methodName ,//
8077boolean usePreemptiveAuth ,//
8178Charset charset ,//
8279String ntlmDomain ,//
@@ -96,7 +93,6 @@ private Realm(AuthScheme scheme,//
9693this .nc =nc ;
9794this .cnonce =cnonce ;
9895this .uri =uri ;
99- this .methodName =methodName ;
10096this .usePreemptiveAuth =usePreemptiveAuth ;
10197this .charset =charset ;
10298this .ntlmDomain =ntlmDomain ;
@@ -157,10 +153,6 @@ public Charset getCharset() {
157153return charset ;
158154 }
159155
160- public String getMethodName () {
161- return methodName ;
162- }
163-
164156/**
165157 * Return true is preemptive authentication is enabled
166158 *
@@ -200,7 +192,7 @@ public boolean isOmitQuery() {
200192public String toString () {
201193return "Realm{" +"principal='" +principal +'\'' +", scheme=" +scheme +", realmName='" +realmName +'\'' +", nonce='" +nonce +'\'' +", algorithm='" +algorithm
202194 +'\'' +", response='" +response +'\'' +", qop='" +qop +'\'' +", nc='" +nc +'\'' +", cnonce='" +cnonce +'\'' +", uri='" +uri +'\''
203- +",methodName='" + methodName + '\'' + ", useAbsoluteURI='" +useAbsoluteURI +'\'' +", omitQuery='" +omitQuery +'\'' +'}' ;
195+ +", useAbsoluteURI='" +useAbsoluteURI +'\'' +", omitQuery='" +omitQuery +'\'' +'}' ;
204196 }
205197
206198/**
@@ -503,7 +495,6 @@ public Realm build() {
503495nc ,//
504496cnonce ,//
505497uri ,//
506- methodName ,//
507498usePreemptive ,//
508499charset ,//
509500ntlmDomain ,//