Searched defs:ResponseAPDU (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/smartcardio/
H A DResponseAPDU.java46 public final class ResponseAPDU implements java.io.Serializable { class in inherits:java.io.Serializable
54 * Constructs a ResponseAPDU from a byte array containing the complete
65 public ResponseAPDU(byte[] apdu) { method in class:ResponseAPDU
147 return "ResponseAPDU: " + apdu.length + " bytes, SW="
153 * Returns true if the given object is also a ResponseAPDU and its bytes are
154 * identical to the bytes in this ResponseAPDU.
163 if (obj instanceof ResponseAPDU == false) {
166 ResponseAPDU other = (ResponseAPDU)obj;

Completed in 3170 milliseconds