Examples of selectCandidatesForAllGroups()


Examples of org.fenixedu.academic.domain.mobility.outbound.OutboundMobilityCandidacyPeriod.selectCandidatesForAllGroups()

    public ActionForward selectCandidatesForAllGroups(final ActionMapping mapping, final ActionForm actionForm,
            final HttpServletRequest request, final HttpServletResponse response) throws IOException {
        final OutboundMobilityCandidacyPeriod period = getDomainObject(request, "candidacyPeriodOid");

        try {
            final String result = period.selectCandidatesForAllGroups();
            request.setAttribute("result", result);
        } catch (final DomainException ex) {
            final String error = ex.getKey();
            request.setAttribute("error", error);
        }
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.