Package org.fenixedu.academic.domain

Examples of org.fenixedu.academic.domain.Holiday


    public ActionForward delete(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response)
            throws FenixServiceException {
        final String holidayIDString = request.getParameter("holidayID");
        if (holidayIDString != null && StringUtils.isNumeric(holidayIDString)) {
            final Holiday holiday = FenixFramework.getDomainObject(holidayIDString);

            DeleteHoliday.run(holiday);
        }
        return prepare(mapping, form, request, response);
    }
View Full Code Here


                date = date.with(DateTimeFieldType.monthOfYear(), getMonthOfYear());
            }
            if (getDayOfMonth() != null) {
                date = date.with(DateTimeFieldType.dayOfMonth(), getDayOfMonth());
            }
            return new Holiday(date, getLocality());
        }
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.Holiday

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.