Examples of DeleteOperationContext


Examples of org.apache.directory.server.core.interceptor.context.DeleteOperationContext

    /**
     * {@inheritDoc}
     */
    public void delete( InternalDeleteRequest deleteRequest, LogChange log ) throws Exception
    {
        DeleteOperationContext opContext = new DeleteOperationContext( this, deleteRequest );
       
        opContext.setLogChange( log );

        OperationManager operationManager = directoryService.getOperationManager();
        operationManager.delete( opContext );
        deleteRequest.getResultResponse().addAll( opContext.getResponseControls() );
    }
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.