Examples of OriginInformationBean


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

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

        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
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.