Package org.fenixedu.academic.dto.candidacy

Examples of org.fenixedu.academic.dto.candidacy.OriginInformationBean


        request.setAttribute("ingressionInformationBean", getRenderedObject("chooseIngression"));
        final Object personBean = getRenderedObject("person");
        request.setAttribute("personBean", personBean);

        Object originInformation = getRenderedObject("originInformation");
        request.setAttribute("originInformationBean", originInformation != null ? originInformation : new OriginInformationBean(
                (PersonBean) personBean));

        final PrecedentDegreeInformationBean precedentDegreeBean = getRenderedObject("precedentDegreeInformation");
        request.setAttribute("precedentDegreeInformationBean", precedentDegreeBean);
View Full Code Here


        return new DomainObjectKeyConverter();
    }

    @Override
    public Object provide(Object source, Object currentValue) {
        final OriginInformationBean originInformationForm = (OriginInformationBean) source;
        if (originInformationForm.getSchoolTimeDistrictOfResidence() != null) {
            return originInformationForm.getSchoolTimeDistrictOfResidence().getDistrictSubdivisionsSet();
        }

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

TOP

Related Classes of org.fenixedu.academic.dto.candidacy.OriginInformationBean

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.