| | |
| | | * |
| | | * |
| | | * Copyright 2006-2010 Sun Microsystems, Inc. |
| | | * Portions Copyright 2011 ForgeRock AS |
| | | * Portions Copyright 2011-2013 ForgeRock AS |
| | | */ |
| | | package org.opends.server.core; |
| | | |
| | |
| | | import java.util.LinkedHashSet; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | import java.util.Set; |
| | | import java.util.concurrent.atomic.AtomicBoolean; |
| | | |
| | | import org.opends.server.api.AuthenticationPolicyState; |
| | |
| | | private RawFilter rawFilter; |
| | | |
| | | // The set of attributes that should be returned in matching entries. |
| | | private LinkedHashSet<String> attributes; |
| | | private Set<String> attributes; |
| | | |
| | | // The set of response controls for this search operation. |
| | | private List<Control> responseControls; |
| | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public final LinkedHashSet<String> getAttributes() |
| | | public final Set<String> getAttributes() |
| | | { |
| | | return attributes; |
| | | } |
| | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public final void setAttributes(LinkedHashSet<String> attributes) |
| | | public final void setAttributes(Set<String> attributes) |
| | | { |
| | | if (attributes == null) |
| | | { |