1 /* 2 * Copyright 2005 Arnaud Prost 3 * 4 * Arnaud.prost@gmail.com 5 * 6 * This software is a computer program whose purpose is to ease the 7 * management of software project. 8 * 9 * This software is governed by the CeCILL license under French law and 10 * abiding by the rules of distribution of free software. You can use, 11 * modify and/ or redistribute the software under the terms of the CeCILL 12 * license as circulated by CEA, CNRS and INRIA at the following URL 13 * "http://www.cecill.info". 14 * 15 * As a counterpart to the access to the source code and rights to copy, 16 * modify and redistribute granted by the license, users are provided only 17 * with a limited warranty and the software's author, the holder of the 18 * economic rights, and the successive licensors have only limited 19 * liability. 20 * 21 * In this respect, the user's attention is drawn to the risks associated 22 * with loading, using, modifying and/or developing or reproducing the 23 * software by the user in light of its specific status of free software, 24 * that may mean that it is complicated to manipulate, and that also 25 * therefore means that it is reserved for developers and experienced 26 * professionals having in-depth computer knowledge. Users are therefore 27 * encouraged to load and test the software's suitability as regards their 28 * requirements in conditions enabling the security of their systems and/or 29 * data to be ensured and, more generally, to use and operate it in the 30 * same conditions as regards security. 31 * 32 * The fact that you are presently reading this means that you have had 33 * knowledge of the CeCILL license and that you accept its terms. 34 */ 35 36 package net.sf.pmr.agilePlanning.domain.iteration; 37 38 import java.util.Calendar; 39 40 import net.sf.pmr.agilePlanning.AgilePlanningObjectFactory; 41 import net.sf.pmr.core.CoreObjectFactory; 42 import net.sf.pmr.keopsframework.domain.validation.Errors; 43 44 /*** 45 * @author Arnaud Prost (arnaud.prost@gmail.com) 46 * les rêgles de validation sont: 47 * <ul> 48 * <li>la date de début est obligatoire</li> 49 * <li>la date de fin est obligatoire</li> 50 * <li>la date de fin est postérieure ou égale à la date de début</li> 51 * </ul> 52 */ 53 public class IterationValidatorImpl implements IterationValidator { 54 55 /* (non-Javadoc) 56 * @see net.sf.pmr.keopsframework.domain.validation.Validator#validate(java.lang.Object) 57 */ 58 public Errors validate(final Object object) { 59 60 Iteration iteration = (Iteration) object; 61 62 Errors errors = AgilePlanningObjectFactory.getErrors(); 63 64 // la date de début est obligatoire 65 if (iteration.getStart() == null) { 66 67 errors.rejectValue(IterationValidator.FIELD_START, 68 "iteration.startMandatory"); 69 70 } 71 72 // la date de fin est obligatoire 73 if (iteration.getEnd() == null) { 74 75 errors.rejectValue(IterationValidator.FIELD_END, 76 "iteration.endMandatory"); 77 78 } 79 80 if (iteration.getStart() != null && iteration.getEnd() != null) { 81 82 Calendar start = Calendar.getInstance(); 83 start.setTime(iteration.getStart()); 84 Calendar end = Calendar.getInstance(); 85 end.setTime(iteration.getEnd()); 86 87 if (end.compareTo(start) < 0) { 88 89 errors.reject("iteration.incoherentDate"); 90 91 } 92 93 } 94 95 return errors; 96 97 98 } 99 100 }