/** * Copyright (C) 2008-2010, Squale Project - http://www.squale.org * * This file is part of Squale. * * Squale is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation, either version 3 of the * License, or any later version. * * Squale 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 Lesser General Public License * along with Squale. If not, see <http://www.gnu.org/licenses/>. */ package org.squale.squalecommon.enterpriselayer.applicationcomponent.administration; import java.io.InputStream; import java.util.Collection; import org.squale.jraf.commons.exception.JrafEnterpriseException; import org.squale.jraf.provider.accessdelegate.DefaultExecuteComponent; import org.squale.squalecommon.datatransfertobject.rulechecking.CppTestRuleSetDTO; import org.squale.squalecommon.enterpriselayer.facade.cpptest.CppTestFacade; /** * Application component de l'outil CppTest */ public class CppTestAdminComponentAccess extends DefaultExecuteComponent { /** * Obtention de toutes les configurations CppTest * * @return collection de CppTestRuleSetDTO * @throws JrafEnterpriseException exception JRAF */ public Collection getAllConfigurations() throws JrafEnterpriseException { Collection configurations = CppTestFacade.getCppTestConfigurations(); return configurations; } /** * Importation d'une configuration CppTest * * @param pStream flux contenant les donn�es * @param pErrors les erreurs g�n�r�s pendant le parsing. * @return un VersionDTO Complet * @throws JrafEnterpriseException exception JRAF */ public CppTestRuleSetDTO importConfiguration( InputStream pStream, StringBuffer pErrors ) throws JrafEnterpriseException { CppTestRuleSetDTO result; result = CppTestFacade.importCppTestConfig( pStream, pErrors ); return result; } /** * Destruction des jeu de r�gles inutilis�s * * @param pRuleSets rulesets devant �tre d�truits * @return rulesets utilis�s et ne pouvant donc pas �tre d�truits * @throws JrafEnterpriseException si erreur */ public Collection deleteRuleSets( Collection pRuleSets ) throws JrafEnterpriseException { return CppTestFacade.deleteRuleSets( pRuleSets ); } }