/** * 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.squaleweb.applicationlayer.formbean.component.parameters; import java.util.Collection; import javax.servlet.http.HttpServletRequest; import org.apache.struts.action.ActionError; import org.apache.struts.action.ActionMapping; import org.squale.squalecommon.enterpriselayer.businessobject.component.parameters.ParametersConstants; import org.squale.squaleweb.transformer.component.parameters.CppTestProjectConfTransformer; /** * Formulaire pour la configuration de la t�che CppTest */ public class CppTestForm extends AbstractParameterForm { /** Script de g�n�ration */ private String mScript; /** Jeu de r�gles appliqu� au sens Clearcase */ private String mSelectedRuleSet; /** Jeux de r�gles disponibles */ private Collection mRuleSets; /** * Constructeur */ public CppTestForm() { mScript = ""; mSelectedRuleSet = ""; } /** * @return RuleSet au sens CppTest */ public String getSelectedRuleSet() { return mSelectedRuleSet; } /** * @param pSelectedRuleSet nom du jeu de r�gles */ public void setSelectedRuleSet( String pSelectedRuleSet ) { mSelectedRuleSet = pSelectedRuleSet; } /** * @return script */ public String getScript() { return mScript; } /** * @param pScript script */ public void setScript( String pScript ) { mScript = pScript; } /** * @return rulesets d�finis */ public Collection getRuleSets() { return mRuleSets; } /** * @param pRuleSets rulesets d�finis */ public void setRuleSets( Collection pRuleSets ) { mRuleSets = pRuleSets; } /** * @see org.squale.squaleweb.applicationlayer.formbean.component.parameters.AbstractParameterForm#getTransformer() * {@inheritDoc} */ public Class getTransformer() { return CppTestProjectConfTransformer.class; } /** * @see org.squale.squaleweb.applicationlayer.formbean.component.parameters.AbstractParameterForm#getNameInSession() * {@inheritDoc} */ public String getNameInSession() { return "cppTestForm"; } /** * @see org.squale.squaleweb.applicationlayer.formbean.component.parameters.AbstractParameterForm#getParametersConstants() * {@inheritDoc} */ public String[] getParametersConstants() { return new String[] { ParametersConstants.CPPTEST }; } /** * @see org.apache.struts.action.ActionForm#reset(org.apache.struts.action.ActionMapping, * javax.servlet.http.HttpServletRequest) {@inheritDoc} */ public void reset( ActionMapping mapping, HttpServletRequest request ) { setScript( "" ); setSelectedRuleSet( "" ); } /** * @see org.squale.squaleweb.applicationlayer.formbean.component.parameters.AbstractParameterForm#getTaskName() * {@inheritDoc} */ public String getTaskName() { return "CppTestTask"; } /** * @see org.squale.squaleweb.applicationlayer.formbean.component.parameters.AbstractParameterForm#validateConf(org.apache.struts.action.ActionMapping, * javax.servlet.http.HttpServletRequest) {@inheritDoc} */ protected void validateConf( ActionMapping pMapping, HttpServletRequest pRequest ) { // Traitement du champ ruleSetId setSelectedRuleSet( getSelectedRuleSet().trim() ); if ( getSelectedRuleSet().length() == 0 ) { addError( "selectedRuleSet", new ActionError( "error.field.required" ) ); } // Traitement du champ script setScript( getScript().trim() ); if ( getScript().length() == 0 ) { addError( "script", new ActionError( "error.field.required" ) ); } } }