Examples of JDAPExtendedResponse


Examples of com.day.ldap.client.opers.JDAPExtendedResponse

     * Returns the OID of the response.
     *
     * @return the response OID.
     */
    public String  getID() {
        JDAPExtendedResponse result = (JDAPExtendedResponse)getProtocolOp();
        return result.getID();
    }
View Full Code Here

Examples of com.day.ldap.client.opers.JDAPExtendedResponse

     * 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();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.