All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.management.AndQueryExp Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) The MX4J Contributors.
 * All rights reserved.
 *
 * This software is distributed under the terms of the MX4J License version 1.0.
 * See the terms of the MX4J License in the documentation provided with this software.
 */

package javax.management;

/**
 * @version $Revision: 1.7 $
 * @serial include
 */
class AndQueryExp extends QueryEval implements QueryExp
{
   private static final long serialVersionUID = -1081892073854801359L;

   /**
    * @serial The left-side expression
    */
   private final QueryExp exp1;
   /**
    * @serial The right-side expression
    */
   private final QueryExp exp2;

   AndQueryExp(QueryExp exp1, QueryExp exp2)
   {
      this.exp1 = exp1;
      this.exp2 = exp2;
   }

   public void setMBeanServer(MBeanServer server)
   {
      super.setMBeanServer(server);
      if (exp1 != null) exp1.setMBeanServer(server);
      if (exp2 != null) exp2.setMBeanServer(server);
   }

   public boolean apply(ObjectName name) throws BadStringOperationException, BadBinaryOpValueExpException, BadAttributeValueExpException, InvalidApplicationException
   {
      if (exp1 != null && exp2 != null)
      {
         return exp1.apply(name) && exp2.apply(name);
      }
      return false;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy