| | |
| | | * |
| | | * |
| | | * Copyright 2008 Sun Microsystems, Inc. |
| | | * Portions Copyright 2014 ForgeRock AS |
| | | */ |
| | | package org.opends.server.admin.condition; |
| | | |
| | |
| | | import org.opends.server.admin.client.ManagementContext; |
| | | import org.opends.server.admin.server.ServerManagedObject; |
| | | import org.opends.server.config.ConfigException; |
| | | import org.opends.server.util.Validator; |
| | | import org.forgerock.util.Reject; |
| | | |
| | | |
| | | |
| | |
| | | * The sub-condition which will be inverted. |
| | | */ |
| | | public NOTCondition(Condition condition) { |
| | | Validator.ensureNotNull(condition); |
| | | Reject.ifNull(condition); |
| | | this.condition = condition; |
| | | } |
| | | |