Re: RFR: [Update 2] 8074064 : OCSPResponse.SingleResponse objects do not parse singleExtensions

2015-03-11 Thread Sean Mullan
Hi Jamil, Just a few comments, mostly minor. * OCSPResponse 768: there is an extra space in the indentation 811: use Collections.emptyMap instead of new HashMap<>() as that does not allocate a new Map object. 813-15,861-63: Use Map.values instead of Map.keySet, ex: for (Extension ext :

Re: RFR: [Update 2] 8074064 : OCSPResponse.SingleResponse objects do not parse singleExtensions

2015-03-11 Thread Jamil Nimeh
On 03/11/2015 07:38 AM, Sean Mullan wrote: Hi Jamil, Just a few comments, mostly minor. * OCSPResponse 768: there is an extra space in the indentation 811: use Collections.emptyMap instead of new HashMap<>() as that does not allocate a new Map object. 813-15,861-63: Use Map.values instead

Re: RFR: [Update 2] 8074064 : OCSPResponse.SingleResponse objects do not parse singleExtensions

2015-03-11 Thread Jamil Nimeh
Okay, an updated webrev has been posted that addresses Sean's comments (thanks, BTW). http://cr.openjdk.java.net/~jnimeh/reviews/8074064/webrev.04/ --Jamil On 03/11/2015 07:38 AM, Sean Mullan wrote: Hi Jamil, Just a few comments, mostly minor. * OCSPResponse 768: there is an extra space in

RFR: JDK-6996366 : convert MacAlg to an enum

2015-03-11 Thread Jamil Nimeh
Hello all, This bug moves the internal MacAlg concrete class to an enum, and alters the CipherSuite constructor to no longer use String parsing on the cipher suite name to determine the MacAlg. Instead, the constructor now requires the caller to pass in a MacAlg, similar to how it already tak

JDK 9 RFR of JDK-8075034: Bad javadoc tags in javax.xml.crypto.dsig

2015-03-11 Thread joe darcy
Hello, Please review the patch below to correct JDK-8075034: Bad javadoc tags in javax.xml.crypto.dsig. In several cases, the javadoc uses unescaped "<" and ">" characters which is flagged as a problem by doclint. In addition, the javadoc as it currently stands renders improperly and omits t