/* * JBoss, Home of Professional Open Source. * Copyright 2006, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package javax.management; /** * An And Query Expression.

* * Returns true only when both expressions are true. * *

Revisions: *

20020314 Adrian Brock: *

*

20020317 Adrian Brock: *

* * @author Adrian Brock. * @version $Revision: 57200 $ */ class AndQueryExp extends QueryEval implements QueryExp { // Constants --------------------------------------------------- private static final long serialVersionUID = -1081892073854801359L; // Attributes -------------------------------------------------- /** * The first query expression */ private QueryExp exp1; /** * The second query expression */ private QueryExp exp2; // Static ------------------------------------------------------ // Constructors ------------------------------------------------ public AndQueryExp() { } /** * Create a new AND query Expression * * @param first the first query expression * @param second the second query expression */ public AndQueryExp(QueryExp first, QueryExp second) { this.exp1 = first; this.exp2 = second; } // Public ------------------------------------------------------ // QueryExp implementation ------------------------------------- public boolean apply(ObjectName name) throws BadStringOperationException, BadBinaryOpValueExpException, BadAttributeValueExpException, InvalidApplicationException { return exp1.apply(name) && exp2.apply(name); } // Object overrides -------------------------------------------- public String toString() { return new String("(" +exp1.toString() + ") && (" + exp2.toString()) + ")"; } // Protected --------------------------------------------------- // Private ----------------------------------------------------- // Inner classes ----------------------------------------------- }