Package org.apache.directory.ldap.client.api.message

Examples of org.apache.directory.ldap.client.api.message.AbandonRequest


     *
     * @param messageId the ID of the request message sent to the server
     */
    public void abandon( int messageId )
    {
        AbandonRequest abandonRequest = new AbandonRequest();
        abandonRequest.setAbandonedMessageId( messageId );

        abandonInternal( abandonRequest );
    }
View Full Code Here

TOP

Related Classes of org.apache.directory.ldap.client.api.message.AbandonRequest

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.