public static final String OID = "1.2.840.113556.1.4.474";
public SortResponseControl(String id, boolean criticality, byte[] value)
throws IOException {
super(OID, criticality, value);
SortResult sr;
sr = (SortResult) ASN1_SORTRESPONSE.decode(value);
resultCode = sr.getSortresult();
badAttrId = sr.getAttributeType();
if (getResultCode() == 0) {
sorted = true;
} else {
sorted = false;
}