/* * Copyright (C) 2007 - 2011 GeoSolutions S.A.S. * http://www.geo-solutions.it * * GPLv3 + Classpath exception * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package it.geosolutions.geostore.core.dao; import java.util.List; import it.geosolutions.geostore.core.model.SecurityRule; import it.geosolutions.geostore.core.model.StoredData; /** * Interface StoredDataDAO. Public interface to define operations on Rule * * @author Emanuele Tajariol (etj at geo-solutions.it) */ public interface StoredDataDAO extends RestrictedGenericDAO<StoredData> { /** * @param name * @param resourceId * @return List<SecurityRule> */ List<SecurityRule> findUserSecurityRule(String name, long resourceId); /** * * @param name * @param resourceId * @return */ List<SecurityRule> findGroupSecurityRule(List<String> groupNames, long resourceId); }