| | |
| | | * Copyright 2008-2010 Sun Microsystems, Inc. |
| | | * Portions Copyright 2011 ForgeRock AS |
| | | */ |
| | | |
| | | package org.opends.server.authorization.dseecompat; |
| | | |
| | | import org.opends.server.types.DN; |
| | |
| | | import org.opends.server.api.Group; |
| | | |
| | | import java.net.InetAddress; |
| | | import java.util.LinkedList; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * Interface that provides a view of the AciContainer that is |
| | |
| | | * Get the list of deny ACIs. |
| | | * @return The deny ACI list. |
| | | */ |
| | | public LinkedList<Aci> getDenyList(); |
| | | public List<Aci> getDenyList(); |
| | | |
| | | /** |
| | | * Get the list allow ACIs. |
| | | * @return The allow ACI list. |
| | | */ |
| | | public LinkedList<Aci> getAllowList(); |
| | | public List<Aci> getAllowList(); |
| | | |
| | | /** |
| | | * Set when the deny list is being evaluated. |