Package org.fenixedu.academic.domain

Examples of org.fenixedu.academic.domain.JobBean


    // Jobs
    public ActionForward prepareAddJobInformation(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
            HttpServletResponse response) {

        addQualificationsAndJobsContextInformation(request);
        final JobBean bean = new JobBean();
        bean.setCountry(Country.readDefault());
        request.setAttribute("job", bean);
        return mapping.findForward("editQualificationsAndJobsInformation");
    }
View Full Code Here


            if (publicBean.getJobBean().getParentBusinessArea() != null) {
                return publicBean.getJobBean().getParentBusinessArea().getChildAreasSet();
            }

        } else if (source.getClass().equals(JobBean.class)) {
            final JobBean jobBean = (JobBean) source;
            if (jobBean.hasParentBusinessArea()) {
                return jobBean.getParentBusinessArea().getChildAreasSet();
            }
        }

        return Collections.emptyList();
    }
View Full Code Here

TOP

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

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.