private byte[] cookie;
public PagedResultsResponseControl(String id, boolean criticality,
byte[] value) throws IOException {
super(id, criticality, value);
PagedResultSearchControlValue pgscv = (PagedResultSearchControlValue) PagedResultsControl.ASN1_ENCODER
.decode(value);
resultSize = pgscv.getSize();
cookie = pgscv.getCookie();
}