Package org.fenixedu.academic.domain.accounting

Examples of org.fenixedu.academic.domain.accounting.PaymentCodeType


    public ActionForward prepareCreatePaymentCodes(final ActionMapping mapping, final ActionForm form,
            final HttpServletRequest request, final HttpServletResponse response) {

        String typeString = request.getParameter("type");
        PaymentCodeType type = PaymentCodeType.valueOf(typeString);

        CandidacyProcessPaymentCodeBean bean = new CandidacyProcessPaymentCodeBean(type);
        request.setAttribute("bean", bean);

        return mapping.findForward("create");
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.accounting.PaymentCodeType

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.