ExtendedResponse :: [APPLICATION 23] SEQUENCE { COMPONENTS OF LDAPResult, responseName [10] LDAPOID OPTIONAL, response [11] OCTET STRING OPTIONAL }
4849505152535455
* Returns the OID of the response. * * @return the response OID. */ public String getID() { JDAPExtendedResponse result = (JDAPExtendedResponse)getProtocolOp(); return result.getID(); }
6869707172737475
* Returns the raw bytes of the value part of the response. * * @return response as a raw array of bytes. */ public byte[] getValue() { JDAPExtendedResponse result = (JDAPExtendedResponse)getProtocolOp(); return result.getValue(); }