Package org.cast.isi.validator

Source Code of org.cast.isi.validator.QuestionNameValidator

/*
* Copyright 2011 CAST, Inc.
*
* This file is part of the UDL Curriculum Toolkit:
* see <http://code.google.com/p/udl-curriculum-toolkit>.
*
* The UDL Curriculum Toolkit is free software: you can redistribute and/or
* modify it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The UDL Curriculum Toolkit 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this software.  If not, see <http://www.gnu.org/licenses/>.
*/
package org.cast.isi.validator;

import net.databinder.hib.Databinder;

import org.apache.wicket.injection.web.InjectorHolder;
import org.apache.wicket.validation.IValidatable;
import org.apache.wicket.validation.validator.AbstractValidator;
import org.cast.isi.ISISession;
import org.cast.isi.data.Question;
import org.cast.isi.service.IQuestionService;

import com.google.inject.Inject;

public class QuestionNameValidator extends AbstractValidator<String> {
 
  private Long questionId;
 
  @Inject
  private IQuestionService questionService;

  private static final long serialVersionUID = 1L;
 
  public QuestionNameValidator(Question question) {
    super();
    if (question != null)
      this.questionId = question.getId();
    else
      questionId = 0L;
    InjectorHolder.getInjector().inject(this);
  }

  @Override
  protected void onValidate(IValidatable<String> validatable) {
    String questionText = validatable.getValue();
    Question other = questionService.getByTextAndStudent(questionText, ISISession.get().getUser());
    if (other != null && !other.getId().equals(questionId)) {
      error(validatable);
    } else {
      Databinder.getHibernateSession().evict(other); // Evict "other" person in case they are the same object
    }
  }

}  
TOP

Related Classes of org.cast.isi.validator.QuestionNameValidator

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.