Overview

Summary

ContactDonateImprint


Appendix E-18: EDUCATION (UI prompt)


EducationSchoolModuleLinkedIn

Properties (9)

PropertyTypeEntityReferenceModule
(1) ActivitiesSTRINGEducation
(2) DegreeSTRINGEducation
(3) DescriptionSTRINGEducation
(4) EndDateDATEEducation
(5) FieldOfStudySTRINGEducation
(6) GradeSTRINGEducation
(7) SchoolLONGEducationSchoolSchoolModule
(8) StartDateDATEEducation
(9) UserLONGEducationUserAccountUserAccountModule


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /educationfindAllEducation()SchoolModuleGETEducation
(2) /education/user/{id}findAllEducationOfUser(id)SchoolModuleGETUserAccount Education
(3) /education/{id}deleteEducationById(id)SchoolModuleDELETEEducation
(4) /education/{id}updateEducationById(education)SchoolModulePUTEducation
(5) /educationinsertEducation(education)SchoolModulePOSTEducation
(6) /education/{id}findEducationById(id)SchoolModuleGETEducation
(7) /education/school/{id}findAllEducationOfSchool(id)SchoolModuleGETSchool Education





Example:

final Education education = (Education) invokeModule(SCHOOL_MODULE + "/education/" + id, Education.class);
if (education != null) {
    final School school1 = (School) invokeModule(SCHOOL_MODULE + "/school/" + education.getSchool().getId(), School.class);
    if (school1 != null) {
    }
    final UserAccount user2 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + education.getUser().getId(), UserAccount.class);
    if (user2 != null) {
    }
}
return education;


Overview

Summary

ContactDonateImprint