/** * $RCSfile$ * $Revision$ * $Date$ * * Copyright (C) 2004 Jive Software. All rights reserved. * * This software is published under the terms of the GNU Public License (GPL), * a copy of which is included in this distribution. */ package org.jivesoftware.net.policies; import org.jivesoftware.net.AcceptPolicy; import org.jivesoftware.net.Connection; import org.jivesoftware.net.AcceptPolicy; /** * Performs a basic logical OR evaluation on child policies (e.g. if either * evaluate to true this policy will evaluate true).<p> * * This policy is useful for combining simpler policies to create * complex policy decisions. The comparison is done using the logical * OR operation so if the first policy evaluates to true, the second * policy is not evaluated. * * @author Iain Shigeoka */ public class OrPolicy implements AcceptPolicy { private AcceptPolicy policy1; private AcceptPolicy policy2; /** * <p>Create an OR policy with the given two child policies.</p> * * @param firstPolicy The first policy that will be evaluated * @param secondPolicy The first policy that will be evaluated */ public OrPolicy(AcceptPolicy firstPolicy, AcceptPolicy secondPolicy){ policy1 = firstPolicy; policy2 = secondPolicy; } public boolean evaluate(Connection connection) { return policy1.evaluate(connection) || policy2.evaluate(connection); } }