Overview

Summary

ContactDonateImprint


Appendix E-7: LAWSUIT PARTY (UI prompt)


LawsuitPartyContentTypeModuleNetflix

Properties (3)

PropertyTypeEntityReferenceModule
(1) CompanyLONGLawsuitPartyCompanyCompanyModule
(2) LawsuitLONGLawsuitPartyLawsuitContentTypeModule
(3) RoleSTRINGLawsuitParty


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /lawsuitparty/{id}updateLawsuitPartyById(lawsuitparty)ContentTypeModulePUTLawsuitParty
(2) /lawsuitparty/company/{id}findAllLawsuitPartyOfCompany(id)ContentTypeModuleGETCompany LawsuitParty
(3) /lawsuitpartyinsertLawsuitParty(lawsuitparty)ContentTypeModulePOSTLawsuitParty
(4) /lawsuitpartyfindAllLawsuitParty()ContentTypeModuleGETLawsuitParty
(5) /lawsuitparty/{id}deleteLawsuitPartyById(id)ContentTypeModuleDELETELawsuitParty
(6) /lawsuitparty/lawsuit/{id}findAllLawsuitPartyOfLawsuit(id)ContentTypeModuleGETLawsuit LawsuitParty
(7) /lawsuitparty/{id}findLawsuitPartyById(id)ContentTypeModuleGETLawsuitParty





Example:

final LawsuitParty lawsuitparty = (LawsuitParty) invokeModule(CONTENT_TYPE_MODULE + "/lawsuitparty/" + id, LawsuitParty.class);
if (lawsuitparty != null) {
    final Lawsuit lawsuit1 = (Lawsuit) invokeModule(CONTENT_TYPE_MODULE + "/lawsuit/" + lawsuitparty.getLawsuit().getId(), Lawsuit.class);
    if (lawsuit1 != null) {
    }
    final Company company2 = (Company) invokeModule(COMPANY_MODULE + "/company/" + lawsuitparty.getCompany().getId(), Company.class);
    if (company2 != null) {
    }
}
return lawsuitparty;


Overview

Summary

ContactDonateImprint