001/*
002 *  Copyright 2017 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.plugins.odfweb.restrictions.rules;
017
018import org.ametys.odf.program.Program;
019import org.ametys.plugins.repository.query.expression.Expression;
020
021/**
022 * Interface to represent a rule for an ODF restriction
023 */
024public interface OdfRestrictionRule
025{
026    /**
027     * Translate the restriction into an expression that can be used for repository query.
028     * @return The restriction expression
029     */
030    public Expression getExpression();
031    
032    /**
033     * Determines if this program is part of this restriction
034     * @param program The program
035     * @return <code>true</code> If the program is part of this restriction
036     */
037    public boolean contains(Program program);
038    
039    /**
040     * Indicate if this restriction is related to orgunit
041     * @return true if it is the case
042     */
043    public boolean hasOrgunitRestrictions(); // TODO to remove ?
044}