Examples of JDAPResult


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

     *
     * @return the error message of the last error (or <CODE>null</CODE>
     * if no message was set).
     */
    public String  getErrorMessage() {
        JDAPResult result = (JDAPResult) getProtocolOp();
        return result.getErrorMessage();
    }
View Full Code Here

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

     *
     * @return the maximal subset of a DN to match,
     * or <CODE>null</CODE>.
     */
    public String getMatchedDN() {
  JDAPResult result = (JDAPResult) getProtocolOp();
        return result.getMatchedDN();
    }
View Full Code Here

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

     * Returns all referrals, if any, in a server response.
     *
     * @return a list of referrals or <CODE>null</CODE>.
     */
    public String[] getReferrals() {
        JDAPResult result = (JDAPResult) getProtocolOp();
        return result.getReferrals();
    }   
View Full Code Here

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

     * Returns the result code in a server response.
     *
     * @return the result code.
     */
    public int getResultCode() {
        JDAPResult result = (JDAPResult) getProtocolOp();
        return result.getResultCode();
    }
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.