Overview

Summary

ContactDonateImprint


Appendix E-47: LAWSUIT PARTY (UI prompt)


LawsuitPartyPersonModuleShopify

Properties (4)

PropertyTypeEntityReferenceModule
(1) LawsuitLONGLawsuitPartyLawsuitPersonModule
(2) PartyCompanyLONGLawsuitPartyCompanyCompanyModule
(3) PartyPersonLONGLawsuitPartyPersonPersonModule
(4) RoleSTRINGLawsuitParty


Module Interfaces (8)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /lawsuitpartyinsertLawsuitParty(lawsuitparty)PersonModulePOSTLawsuitParty
(2) /lawsuitparty/{id}deleteLawsuitPartyById(id)PersonModuleDELETELawsuitParty
(3) /lawsuitparty/{id}findLawsuitPartyById(id)PersonModuleGETLawsuitParty
(4) /lawsuitparty/lawsuit/{id}findAllLawsuitPartyOfLawsuit(id)PersonModuleGETLawsuit LawsuitParty
(5) /lawsuitparty/partyperson/{id}findAllLawsuitPartyOfPartyPerson(id)PersonModuleGETPerson LawsuitParty
(6) /lawsuitpartyfindAllLawsuitParty()PersonModuleGETLawsuitParty
(7) /lawsuitparty/partycompany/{id}findAllLawsuitPartyOfPartyCompany(id)PersonModuleGETCompany LawsuitParty
(8) /lawsuitparty/{id}updateLawsuitPartyById(lawsuitparty)PersonModulePUTLawsuitParty





Example:

final LawsuitParty lawsuitparty = (LawsuitParty) invokeModule(PERSON_MODULE + "/lawsuitparty/" + id, LawsuitParty.class);
if (lawsuitparty != null) {
    final Company partycompany1 = (Company) invokeModule(COMPANY_MODULE + "/company/" + lawsuitparty.getPartyCompany().getId(), Company.class);
    if (partycompany1 != null) {
    }
    final Person partyperson2 = (Person) invokeModule(PERSON_MODULE + "/person/" + lawsuitparty.getPartyPerson().getId(), Person.class);
    if (partyperson2 != null) {
    }
    final Lawsuit lawsuit3 = (Lawsuit) invokeModule(PERSON_MODULE + "/lawsuit/" + lawsuitparty.getLawsuit().getId(), Lawsuit.class);
    if (lawsuit3 != null) {
        final Company company4 = (Company) invokeModule(COMPANY_MODULE + "/company/" + lawsuit3.getCompany().getId(), Company.class);
        if (company4 != null) {
        }
    }
}
return lawsuitparty;


Overview

Summary

ContactDonateImprint