/* * Copyright (C) 2007 - 2012 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.impl; import com.googlecode.genericdao.search.ISearch; import java.util.List; import it.geosolutions.geostore.core.dao.SecurityDAO; import it.geosolutions.geostore.core.model.SecurityRule; import org.apache.log4j.Logger; import org.springframework.transaction.annotation.Transactional; /** * Class SecurityDAOImpl. * * @author Tobia di Pisa (tobia.dipisa at geo-solutions.it) * @author ETj (etj at geo-solutions.it) */ @Transactional(value = "geostoreTransactionManager") public class SecurityDAOImpl extends BaseDAO<SecurityRule, Long> implements SecurityDAO { private static final Logger LOGGER = Logger.getLogger(SecurityDAOImpl.class); /* * (non-Javadoc) * * @see com.trg.dao.jpa.GenericDAOImpl#persist(T[]) */ @Override public void persist(SecurityRule... entities) { if (LOGGER.isDebugEnabled()) { LOGGER.info("Inserting new entities for Security ... "); } super.persist(entities); } /* * (non-Javadoc) * * @see com.trg.dao.jpa.GenericDAOImpl#findAll() */ @Override public List<SecurityRule> findAll() { return super.findAll(); } /* * (non-Javadoc) * * @see com.trg.dao.jpa.GenericDAOImpl#search(com.trg.search.ISearch) */ @SuppressWarnings("unchecked") @Override public List<SecurityRule> search(ISearch search) { return super.search(search); } /* * (non-Javadoc) * * @see com.trg.dao.jpa.GenericDAOImpl#merge(java.lang.Object) */ @Override public SecurityRule merge(SecurityRule entity) { return super.merge(entity); } /* * (non-Javadoc) * * @see com.trg.dao.jpa.GenericDAOImpl#remove(java.lang.Object) */ @Override public boolean remove(SecurityRule entity) { return super.remove(entity); } /* * (non-Javadoc) * * @see com.trg.dao.jpa.GenericDAOImpl#removeById(java.io.Serializable) */ @Override public boolean removeById(Long id) { return super.removeById(id); } }