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 */ 025public class DefaultDisableConditions implements DisableConditions 026{ 027 private ASSOCIATION_TYPE _associationType = ASSOCIATION_TYPE.AND; 028 private final List<DisableConditions> _subConditionsList = new ArrayList<>(); 029 private final List<DisableCondition> _conditionList = new ArrayList<>(); 030 031 public List<DisableCondition> getConditions() 032 { 033 return _conditionList; 034 } 035 036 public List<DisableConditions> getSubConditions() 037 { 038 return _subConditionsList; 039 } 040 041 public ASSOCIATION_TYPE getAssociationType() 042 { 043 return _associationType; 044 } 045 046 public void setAssociation(ASSOCIATION_TYPE associationType) 047 { 048 _associationType = associationType; 049 } 050}