blob: 18641224d45106365835bb77d16729adbe74f0e2 [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.xdbm.search.impl;
import org.apache.directory.shared.ldap.filter.NotNode;
import org.apache.directory.shared.ldap.filter.ExprNode;
import org.apache.directory.server.xdbm.IndexEntry;
import org.apache.directory.server.xdbm.search.Evaluator;
import org.apache.directory.server.core.entry.ServerEntry;
/**
* An Evaluator for logical negation (NOT) expressions.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
* @version $$Rev$$
*/
public class NotEvaluator implements Evaluator<NotNode, ServerEntry>
{
private final NotNode node;
private final Evaluator<? extends ExprNode,ServerEntry> childEvaluator;
public NotEvaluator( NotNode node, Evaluator<? extends ExprNode, ServerEntry> childEvaluator )
{
this.node = node;
this.childEvaluator = childEvaluator;
}
public boolean evaluate( Long id ) throws Exception
{
return ! childEvaluator.evaluate( id );
}
public boolean evaluate( ServerEntry entry ) throws Exception
{
return ! childEvaluator.evaluate( entry );
}
public boolean evaluate( IndexEntry<?, ServerEntry> indexEntry ) throws Exception
{
return ! childEvaluator.evaluate( indexEntry );
}
public NotNode getExpression()
{
return node;
}
}