001/*
002 *  Copyright 2014 Anyware Services
003 *
004 *  Licensed under the Apache License, Version 2.0 (the "License");
005 *  you may not use this file except in compliance with the License.
006 *  You may obtain a copy of the License at
007 *
008 *      http://www.apache.org/licenses/LICENSE-2.0
009 *
010 *  Unless required by applicable law or agreed to in writing, software
011 *  distributed under the License is distributed on an "AS IS" BASIS,
012 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 *  See the License for the specific language governing permissions and
014 *  limitations under the License.
015 */
016package org.ametys.runtime.model.disableconditions;
017
018import java.util.ArrayList;
019import java.util.List;
020
021/**
022 * List of disable conditions that can not be evaluated
023 * Composed by a list of sub conditions or conditions and a association operator
024 * @param <T> The type of disable condition
025 */
026public abstract class AbstractDisableConditions<T extends DisableCondition> implements DisableConditions<T>
027{
028    private ASSOCIATION_TYPE _associationType = ASSOCIATION_TYPE.AND;
029    private final List<DisableConditions<T>> _subConditionsList = new ArrayList<>();
030    private final List<T> _conditionList = new ArrayList<>();
031    
032    public List<T> getConditions()
033    {
034        return _conditionList;
035    }
036    
037    public List<DisableConditions<T>> getSubConditions()
038    {
039        return _subConditionsList;
040    }
041    
042    public ASSOCIATION_TYPE getAssociationType()
043    {
044        return _associationType;
045    }
046    
047    public void setAssociation(ASSOCIATION_TYPE associationType)
048    {
049        _associationType = associationType;
050    }
051}