Package org.fenixedu.academic.domain.organizationalStructure

Examples of org.fenixedu.academic.domain.organizationalStructure.Unit


        setLastModifiedDate(new DateTime());
    }

    private void checkAndUpdatePrecedentInformation(PrecedentDegreeInformationBean precedentDegreeInformationBean) {
        if (precedentDegreeInformationBean.isDegreeChangeOrTransferOrErasmusStudent()) {
            Unit precedentInstitution = precedentDegreeInformationBean.getPrecedentInstitution();
            if (precedentInstitution == null
                    && !StringUtils.isEmpty(precedentDegreeInformationBean.getPrecedentInstitutionName())) {
                precedentInstitution =
                        UnitUtils.readExternalInstitutionUnitByName(precedentDegreeInformationBean.getPrecedentInstitutionName());
                if (precedentInstitution == null) {
View Full Code Here


        }
    }

    private void checkAndUpdatePrecedentInformation(PersonalInformationBean personalInformationBean) {
        if (personalInformationBean.isDegreeChangeOrTransferOrErasmusStudent()) {
            Unit precedentInstitution = personalInformationBean.getPrecedentInstitution();
            if (precedentInstitution == null && !StringUtils.isEmpty(personalInformationBean.getPrecedentInstitutionName())) {
                precedentInstitution =
                        UnitUtils.readExternalInstitutionUnitByName(personalInformationBean.getPrecedentInstitutionName());
                if (precedentInstitution == null) {
                    precedentInstitution =
View Full Code Here

    Set<String> languages;
    String language;

    private FenixAbout() {
        final Bennu instance = Bennu.getInstance();
        final Unit unit = instance.getInstitutionUnit();
        if (unit != null) {
            institutionName = unit.getName();
            institutionUrl = unit.getDefaultWebAddressUrl();
        }
        currentAcademicTerm = ExecutionSemester.readActualExecutionSemester().getQualifiedName();
        rssPtFeed.add(new FenixRSSFeed("News", FenixEduAcademicConfiguration.getConfiguration().getFenixApiNewsRSSUrlPt()));
        rssPtFeed.add(new FenixRSSFeed("Events", FenixEduAcademicConfiguration.getConfiguration().getFenixApiEventsRSSUrlPt()));
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.organizationalStructure.Unit

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.