Examples of MobilityApplicationPeriod


Examples of org.fenixedu.academic.domain.period.MobilityApplicationPeriod

    public ActionForward manageEmailTemplatesPostback(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
            HttpServletResponse response) {
        MobilityEmailTemplateBean bean = getMobilityEmailTemplateBean();
        MobilityApplicationProcess process = getProcess(request);
        MobilityApplicationPeriod candidacyPeriod = process.getCandidacyPeriod();
        MobilityEmailTemplate emailTemplate = candidacyPeriod.getEmailTemplateFor(bean.getMobilityProgram(), bean.getType());
        if (emailTemplate != null) {
            bean.setSubject(emailTemplate.getSubject());
            bean.setBody(emailTemplate.getBody());
        } else {
            bean.setSubject("");
View Full Code Here
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.