| | |
| | | import java.nio.ByteBuffer; |
| | | import java.nio.channels.Selector; |
| | | import java.util.Collection; |
| | | import java.util.Collections; |
| | | import java.util.HashSet; |
| | | import java.util.List; |
| | | import java.util.Set; |
| | |
| | | import org.opends.server.core.SearchOperation; |
| | | import org.opends.server.core.networkgroups.NetworkGroup; |
| | | import org.opends.server.loggers.debug.DebugTracer; |
| | | import org.opends.server.types.AbstractOperation; |
| | | import org.opends.server.types.Attribute; |
| | | import org.opends.server.types.AttributeType; |
| | | import org.opends.server.types.AttributeValue; |
| | |
| | | * @return The set of operations in progress for this client |
| | | * connection. |
| | | */ |
| | | public abstract Collection<AbstractOperation> |
| | | getOperationsInProgress(); |
| | | public abstract Collection<Operation> getOperationsInProgress(); |
| | | |
| | | |
| | | |
| | |
| | | * @return The operation in progress with the specified message ID, |
| | | * or {@code null} if no such operation could be found. |
| | | */ |
| | | public abstract AbstractOperation |
| | | getOperationInProgress(int messageID); |
| | | public abstract Operation getOperationInProgress(int messageID); |
| | | |
| | | |
| | | |
| | |
| | | * @return The set of persistent searches registered for this |
| | | * client. |
| | | */ |
| | | public final CopyOnWriteArrayList<PersistentSearch> |
| | | getPersistentSearches() |
| | | public final List<PersistentSearch> getPersistentSearches() |
| | | { |
| | | return persistentSearches; |
| | | } |
| | |
| | | |
| | | if ((authzDN == null) || authzDN.isNullDN()) |
| | | { |
| | | return java.util.Collections.<Group>emptySet(); |
| | | return Collections.<Group>emptySet(); |
| | | } |
| | | |
| | | Entry userEntry = DirectoryServer.getEntry(authzDN); |
| | | if (userEntry == null) |
| | | { |
| | | return java.util.Collections.<Group>emptySet(); |
| | | return Collections.<Group>emptySet(); |
| | | } |
| | | |
| | | HashSet<Group> groupSet = new HashSet<Group>(); |