/** * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2009 Sun Microsystems Inc. All Rights Reserved * * The contents of this file are subject to the terms * of the Common Development and Distribution License * (the License). You may not use this file except in * compliance with the License. * * You can obtain a copy of the License at * https://opensso.dev.java.net/public/CDDLv1.0.html or * opensso/legal/CDDLv1.0.txt * See the License for the specific language governing * permission and limitations under the License. * * When distributing Covered Code, include this CDDL * Header Notice in each file and include the License file * at opensso/legal/CDDLv1.0.txt. * If applicable, add the following below the CDDL Header, * with the fields enclosed by brackets [] replaced by * your own identifying information: * "Portions Copyrighted [year] [name of copyright owner]" * * $Id: AndCondition.java,v 1.3 2010/01/12 21:29:58 veiming Exp $ * * Portions Copyrighted 2015 ForgeRock AS. */ package com.sun.identity.entitlement; import org.forgerock.openam.utils.CollectionUtils; import javax.security.auth.Subject; import java.util.HashMap; import java.util.Map; import java.util.Set; /** * EntitlementCondition wrapper on a set of * EntitlementCondition(s) to provide * boolean OR logic Membership is of AndCondition is satisfied * if the user is a member of any of the wrapped * EntitlementCondition. */ public class AndCondition extends LogicalCondition { /** * Constructs AndCondition */ public AndCondition() { super(); } /** * Constructs AndCondition * * @param eConditions wrapped EntitlementCondition(s) */ public AndCondition(Set eConditions) { super(eConditions); } /** * Returns ConditionDecision of * EntitlementCondition evaluation * * @param realm Realm name. * @param subject EntitlementCondition who is under evaluation. * @param resourceName Resource name. * @param environment Environment parameters. * @return ConditionDecision of * EntitlementCondition evaluation * @throws EntitlementException if error occurs. */ public ConditionDecision evaluate(String realm, Subject subject, String resourceName, Map> environment) throws EntitlementException { Set conditions = getEConditions(); if (CollectionUtils.isEmpty(conditions)) { return ConditionDecision .newSuccessBuilder() .build(); } Map> advice = new HashMap<>(); Map> responseAttributes = new HashMap<>(); long ttl = Long.MAX_VALUE; for (EntitlementCondition condition : conditions) { ConditionDecision decision = condition.evaluate(realm, subject, resourceName, environment); advice.putAll(decision.getAdvice()); responseAttributes.putAll(decision.getResponseAttributes()); if (decision.getTimeToLive() < ttl) { ttl = decision.getTimeToLive(); } if (!decision.isSatisfied()) { return ConditionDecision .newFailureBuilder() .setAdvice(advice) .setResponseAttributes(responseAttributes) .build(); } } return ConditionDecision .newSuccessBuilder() .setResponseAttributes(responseAttributes) .setTimeToLive(ttl) .build(); } }