/** * Copyright © 2002 Instituto Superior Técnico * * This file is part of FenixEdu Academic. * * FenixEdu Academic 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 * (at your option) any later version. * * FenixEdu Academic 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with FenixEdu Academic. If not, see <http://www.gnu.org/licenses/>. */ package org.fenixedu.academic.ui.struts.action.gep.student.candidacy.personal.ingression.data; import java.io.Serializable; import java.util.Collection; import java.util.HashSet; import java.util.List; import java.util.Set; import org.apache.commons.lang.StringUtils; import org.fenixedu.academic.domain.Person; import org.fenixedu.academic.domain.student.Registration; import org.fenixedu.academic.domain.student.Student; public class ChooseStudentBean implements Serializable { private static final long serialVersionUID = 1L; private Integer number; private String username; private String documentId; public ChooseStudentBean() { } public Integer getNumber() { return number; } public void setNumber(Integer number) { this.number = number; } public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getDocumentId() { return documentId; } public void setDocumentId(String documentId) { this.documentId = documentId; } public Set<Student> findStudents() { Set<Student> result = new HashSet<Student>(); if (getNumber() != null) { Student studentByNumber = Student.readStudentByNumber(getNumber()); List<Registration> registrations = Registration.readByNumber(getNumber()); if (studentByNumber != null) { result.add(studentByNumber); } for (Registration registration : registrations) { result.add(registration.getStudent()); } } else if (!StringUtils.isEmpty(getUsername())) { Person person = Person.readPersonByUsername(getUsername()); if (person != null && person.getStudent() != null) { result.add(person.getStudent()); } } else if (!StringUtils.isEmpty(getDocumentId())) { Collection<Person> personList = Person.readByDocumentIdNumber(getDocumentId()); for (Person person : personList) { if (person.getStudent() != null) { result.add(person.getStudent()); } } } return result; } }