Return-Path: X-Original-To: apmail-directory-commits-archive@www.apache.org Delivered-To: apmail-directory-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 540DCD90F for ; Sat, 23 Feb 2013 13:09:21 +0000 (UTC) Received: (qmail 82660 invoked by uid 500); 23 Feb 2013 13:09:21 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 82529 invoked by uid 500); 23 Feb 2013 13:09:17 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 81799 invoked by uid 99); 23 Feb 2013 13:09:16 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 23 Feb 2013 13:09:16 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 23 Feb 2013 13:09:13 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id CE30E238897F; Sat, 23 Feb 2013 13:08:53 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1449313 - in /directory/shared/trunk/ldap/model/src/main/java/org/apache/directory/api/ldap/model/filter: AssertionType.java ObjectClassNode.java Date: Sat, 23 Feb 2013 13:08:53 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130223130853.CE30E238897F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: elecharny Date: Sat Feb 23 13:08:53 2013 New Revision: 1449313 URL: http://svn.apache.org/r1449313 Log: o Added the OjectClassNode for filters which contain (ObjectClass=*) node o Added the OBJECTCLASS assertion Added: directory/shared/trunk/ldap/model/src/main/java/org/apache/directory/api/ldap/model/filter/ObjectClassNode.java Modified: directory/shared/trunk/ldap/model/src/main/java/org/apache/directory/api/ldap/model/filter/AssertionType.java Modified: directory/shared/trunk/ldap/model/src/main/java/org/apache/directory/api/ldap/model/filter/AssertionType.java URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/model/src/main/java/org/apache/directory/api/ldap/model/filter/AssertionType.java?rev=1449313&r1=1449312&r2=1449313&view=diff ============================================================================== --- directory/shared/trunk/ldap/model/src/main/java/org/apache/directory/api/ldap/model/filter/AssertionType.java (original) +++ directory/shared/trunk/ldap/model/src/main/java/org/apache/directory/api/ldap/model/filter/AssertionType.java Sat Feb 23 13:08:53 2013 @@ -64,5 +64,8 @@ public enum AssertionType NOT, /** Undefined operation */ - UNDEFINED; + UNDEFINED, + + /** (ObjectClass=*) filter */ + OBJECTCLASS; } Added: directory/shared/trunk/ldap/model/src/main/java/org/apache/directory/api/ldap/model/filter/ObjectClassNode.java URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/model/src/main/java/org/apache/directory/api/ldap/model/filter/ObjectClassNode.java?rev=1449313&view=auto ============================================================================== --- directory/shared/trunk/ldap/model/src/main/java/org/apache/directory/api/ldap/model/filter/ObjectClassNode.java (added) +++ directory/shared/trunk/ldap/model/src/main/java/org/apache/directory/api/ldap/model/filter/ObjectClassNode.java Sat Feb 23 13:08:53 2013 @@ -0,0 +1,74 @@ +/* + * 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.api.ldap.model.filter; + + +/** + * An empty class used for the (ObjectClass=*) node. + * + * @author Apache Directory Project + * @version $Rev$, $Date$ + */ +public final class ObjectClassNode extends AbstractExprNode +{ + /** A static instance of this node */ + public static final ExprNode OBJECT_CLASS_NODE = new ObjectClassNode(); + + + /** + * Creates a new instance of ObjectClassNode. + */ + private ObjectClassNode() + { + super( AssertionType.OBJECTCLASS ); + } + + + /** + * {@inheritDoc} + * + * This implementation always returns true. + */ + public boolean isLeaf() + { + return true; + } + + + /** + * {@inheritDoc} + * + * This implementation always returns null. + */ + public Object accept( FilterVisitor visitor ) + { + return null; + } + + + /** + * {@inheritDoc} + */ + @Override + public String toString() + { + return "All"; + } +}