Package com.day.ldap.client.opers

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


     * 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

Related Classes of com.day.ldap.client.opers.JDAPExtendedResponse

Copyright © 2018 www.massapicom. 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.