blob: 6241e9c4aca1f2490c15fc7878de47646a4a0a1c [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package org.apache.directory.server.ldap.handlers;
import org.apache.directory.api.ldap.model.cursor.Cursor;
import org.apache.directory.api.ldap.model.entry.Entry;
import org.apache.directory.api.ldap.model.message.AbandonListener;
import org.apache.directory.api.ldap.model.message.AbandonableRequest;
import org.apache.directory.server.core.api.event.DirectoryListener;
import org.apache.directory.server.ldap.LdapServer;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* An AbandonListener implementation which closes an associated cursor or
* removes a DirectoryListener.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public class SearchAbandonListener implements AbandonListener
{
private static final Logger LOG = LoggerFactory.getLogger( SearchAbandonListener.class );
private final LdapServer ldapServer;
private Cursor<Entry> cursor;
private DirectoryListener listener;
public SearchAbandonListener( LdapServer ldapServer, Cursor<Entry> cursor, DirectoryListener listener )
{
if ( ldapServer == null )
{
throw new IllegalArgumentException( "ldapServer" );
}
this.ldapServer = ldapServer;
this.cursor = cursor;
this.listener = listener;
}
public SearchAbandonListener( LdapServer ldapServer, DirectoryListener listener )
{
this( ldapServer, null, listener );
}
public SearchAbandonListener( LdapServer ldapServer, Cursor<Entry> cursor )
{
this( ldapServer, cursor, null );
}
public void requestAbandoned( AbandonableRequest req )
{
if ( listener != null )
{
ldapServer.getDirectoryService().getEventService().removeListener( listener );
}
}
}