Index: src/java/org/apache/commons/httpclient/HttpState.java =================================================================== --- src/java/org/apache/commons/httpclient/HttpState.java (revision 560353) +++ src/java/org/apache/commons/httpclient/HttpState.java (working copy) @@ -69,23 +69,23 @@ * Map of {@link Credentials credentials} by realm that this * HTTP state contains. */ - private HashMap credMap = new HashMap(); + protected HashMap credMap = new HashMap(); /** * Map of {@link Credentials proxy credentials} by realm that this * HTTP state contains */ - private HashMap proxyCred = new HashMap(); + protected HashMap proxyCred = new HashMap(); /** * Array of {@link Cookie cookies} that this HTTP state contains. */ - private ArrayList cookies = new ArrayList(); + protected ArrayList cookies = new ArrayList(); private boolean preemptive = false; private int cookiePolicy = -1; - // -------------------------------------------------------- Class Variables + // -------------------------------------------------------- Class Variables /** * The boolean system property name to turn on preemptive authentication.