jdk/src/share/classes/javax/net/ssl/SSLEngineResult.java
changeset 18156 edb590d448c5
parent 14514 46a8ed03c7fc
child 23010 6dadb192ad81
equal deleted inserted replaced
18155:889970e5b728 18156:edb590d448c5
   171      * @param   bytesProduced
   171      * @param   bytesProduced
   172      *          the number of bytes placed into the destination ByteBuffer
   172      *          the number of bytes placed into the destination ByteBuffer
   173      *
   173      *
   174      * @throws  IllegalArgumentException
   174      * @throws  IllegalArgumentException
   175      *          if the <code>status</code> or <code>handshakeStatus</code>
   175      *          if the <code>status</code> or <code>handshakeStatus</code>
   176      *          arguments are null, or if <<code>bytesConsumed</code> or
   176      *          arguments are null, or if <code>bytesConsumed</code> or
   177      *          <code>bytesProduced</code> is negative.
   177      *          <code>bytesProduced</code> is negative.
   178      */
   178      */
   179     public SSLEngineResult(Status status, HandshakeStatus handshakeStatus,
   179     public SSLEngineResult(Status status, HandshakeStatus handshakeStatus,
   180             int bytesConsumed, int bytesProduced) {
   180             int bytesConsumed, int bytesProduced) {
   181 
   181