Examples of editPersonWithExternalData()


Examples of org.fenixedu.academic.domain.Person.editPersonWithExternalData()

        final Person person = process.getPerson();
        if (process.isAllowedToManageProcess(userView)) {
            person.edit((PersonBean) object);
        } else if (person.getUser() == null && person.getStudent() == null && process.getCandidacyProcess().isPublicCandidacy()) {
            // assuming public candidacy
            person.editPersonWithExternalData((PersonBean) object, true);
        }
        return process;
    }
}
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.