Package org.fenixedu.academic.domain.phd.thesis

Examples of org.fenixedu.academic.domain.phd.thesis.PhdThesisJuryElementBean


        return mapping.findForward("manageThesisJuryElements");
    }

    public ActionForward prepareAddJuryElement(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
            HttpServletResponse response) {
        request.setAttribute("thesisJuryElementBean", new PhdThesisJuryElementBean(getProcess(request)));
        return mapping.findForward("addJuryElement");
    }
View Full Code Here


    }

    public ActionForward prepareEditJuryElement(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
            HttpServletResponse response) {

        request.setAttribute("thesisJuryElementBean", new PhdThesisJuryElementBean(getProcess(request), getJuryElement(request)));
        return mapping.findForward("editJuryElement");
    }
View Full Code Here

        return manageThesisJuryElements(mapping, actionForm, request, response);
    }

    public ActionForward prepareAddPresidentJuryElement(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
            HttpServletResponse response) {
        request.setAttribute("thesisJuryElementBean", new PhdThesisJuryElementBean(getProcess(request)));
        return mapping.findForward("addPresidentJuryElement");
    }
View Full Code Here

            return new DomainObjectKeyConverter();
        }

        @Override
        public Object provide(Object source, Object currentValue) {
            final PhdThesisJuryElementBean bean = (PhdThesisJuryElementBean) source;
            return bean.getExistingParticipants();
        }
View Full Code Here

    }

    @Override
    protected PhdThesisProcess executeActivity(PhdThesisProcess process, User userView, Object object) {

        final PhdThesisJuryElementBean bean = (PhdThesisJuryElementBean) object;
        final ThesisJuryElement juryElement = bean.getJuryElement();

        if (process.getThesisJuryElementsSet().contains(juryElement)) {
            juryElement.edit(bean);
        }
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.phd.thesis.PhdThesisJuryElementBean

Copyright © 2018 www.massapicom. 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.