package net.sourceforge.fenixedu.dataTransferObject.serviceRequests; import net.sourceforge.fenixedu.dataTransferObject.student.RegistrationSelectExecutionYearBean; import net.sourceforge.fenixedu.domain.student.Registration; import org.joda.time.DateTime; import com.linkare.commons.metainfo.Linkare; import pt.utl.ist.fenix.tools.util.i18n.Language; public class AcademicServiceRequestCreateBean extends RegistrationSelectExecutionYearBean { private DateTime requestDate = new DateTime(); private Boolean urgentRequest = Boolean.FALSE; private Boolean freeProcessed = Boolean.FALSE; private Language language = Language.getDefaultLanguage(); public AcademicServiceRequestCreateBean(Registration registration) { super(registration); } @Linkare(author = "Paulo Zenida", comments = "Changed the modifiers order according to the JLS suggestions") public final DateTime getRequestDate() { return requestDate; } @Linkare(author = "Paulo Zenida", comments = "Changed the modifiers order according to the JLS suggestions") public final void setRequestDate(DateTime requestDate) { this.requestDate = requestDate; } @Linkare(author = "Paulo Zenida", comments = "Changed the modifiers order according to the JLS suggestions") public final Boolean getUrgentRequest() { return urgentRequest; } @Linkare(author = "Paulo Zenida", comments = "Changed the modifiers order according to the JLS suggestions") public final void setUrgentRequest(Boolean urgentRequest) { this.urgentRequest = urgentRequest; } @Linkare(author = "Paulo Zenida", comments = "Changed the modifiers order according to the JLS suggestions") public final Boolean getFreeProcessed() { return freeProcessed; } @Linkare(author = "Paulo Zenida", comments = "Changed the modifiers order according to the JLS suggestions") public final void setFreeProcessed(Boolean freeProcessed) { this.freeProcessed = freeProcessed; } @Linkare(author = "Paulo Zenida", comments = "Changed the modifiers order according to the JLS suggestions") public final Language getLanguage() { return language; } @Linkare(author = "Paulo Zenida", comments = "Changed the modifiers order according to the JLS suggestions") public final void setLanguage(final Language language) { this.language = language; } }