| Contact | Donate | Imprint |
| LawsuitParty | PersonModule | Shopify |
| Property | Type | Entity | Reference | Module |
| (1) Lawsuit | LONG | LawsuitParty | Lawsuit | PersonModule |
| (2) PartyCompany | LONG | LawsuitParty | Company | CompanyModule |
| (3) PartyPerson | LONG | LawsuitParty | Person | PersonModule |
| (4) Role | STRING | LawsuitParty |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /lawsuitparty | insertLawsuitParty(lawsuitparty) | PersonModule | POST | LawsuitParty |
| (2) /lawsuitparty/{id} | deleteLawsuitPartyById(id) | PersonModule | DELETE | LawsuitParty |
| (3) /lawsuitparty/{id} | findLawsuitPartyById(id) | PersonModule | GET | LawsuitParty |
| (4) /lawsuitparty/lawsuit/{id} | findAllLawsuitPartyOfLawsuit(id) | PersonModule | GET | Lawsuit LawsuitParty |
| (5) /lawsuitparty/partyperson/{id} | findAllLawsuitPartyOfPartyPerson(id) | PersonModule | GET | Person LawsuitParty |
| (6) /lawsuitparty | findAllLawsuitParty() | PersonModule | GET | LawsuitParty |
| (7) /lawsuitparty/partycompany/{id} | findAllLawsuitPartyOfPartyCompany(id) | PersonModule | GET | Company LawsuitParty |
| (8) /lawsuitparty/{id} | updateLawsuitPartyById(lawsuitparty) | PersonModule | PUT | LawsuitParty |
Example:
final LawsuitParty lawsuitparty = (LawsuitParty) invokeModule(PERSON_MODULE + "/lawsuitparty/" + id, LawsuitParty.class);| Contact | Donate | Imprint |