src/java.base/share/classes/sun/net/www/protocol/http/DigestAuthentication.java
branchJDK-8229867-branch
changeset 57968 8595871a5446
parent 57956 e0b8b019d2f5
equal deleted inserted replaced
57966:e89c7aaf2906 57968:8595871a5446
    74 
    74 
    75     // Authentication parameters defined in RFC2617.
    75     // Authentication parameters defined in RFC2617.
    76     // One instance of these may be shared among several DigestAuthentication
    76     // One instance of these may be shared among several DigestAuthentication
    77     // instances as a result of a single authorization (for multiple domains)
    77     // instances as a result of a single authorization (for multiple domains)
    78 
    78 
       
    79     // synchronized should be safe here
    79     static class Parameters implements java.io.Serializable {
    80     static class Parameters implements java.io.Serializable {
    80         private static final long serialVersionUID = -3584543755194526252L;
    81         private static final long serialVersionUID = -3584543755194526252L;
    81 
    82 
    82         private boolean serverQop; // server proposed qop=auth
    83         private boolean serverQop; // server proposed qop=auth
    83         private String opaque;
    84         private String opaque;