Overview

Summary

ContactDonateImprint


3. CONTENT TYPE MODULE (UI prompt)



Module Entities (5)

EntityAliasModuleGlobal Schema
(1) CompanyCompanyCompanyModuleNetflix
(2) ContentTitleContentTitleContentTitleModuleNetflix
(3) ContentTypeContentTypeContentTypeModuleNetflix
(4) LawsuitLawsuitContentTypeModuleNetflix
(5) LawsuitPartyLawsuitPartyContentTypeModuleNetflix

Module Interfaces (17)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /lawsuitpartyfindAllLawsuitParty()ContentTypeModuleGETLawsuitParty
(2) /lawsuit/{id}deleteLawsuitById(id)ContentTypeModuleDELETELawsuit
(3) /lawsuit/{id}updateLawsuitById(lawsuit)ContentTypeModulePUTLawsuit
(4) /contenttype/{id}deleteContentTypeById(id)ContentTypeModuleDELETEContentType
(5) /lawsuitparty/{id}deleteLawsuitPartyById(id)ContentTypeModuleDELETELawsuitParty
(6) /contenttype/{id}findContentTypeById(id)ContentTypeModuleGETContentType
(7) /contenttype/{id}updateContentTypeById(contenttype)ContentTypeModulePUTContentType
(8) /lawsuitpartyinsertLawsuitParty(lawsuitparty)ContentTypeModulePOSTLawsuitParty
(9) /lawsuitparty/{id}findLawsuitPartyById(id)ContentTypeModuleGETLawsuitParty
(10) /contenttypefindAllContentType()ContentTypeModuleGETContentType
(11) /lawsuitinsertLawsuit(lawsuit)ContentTypeModulePOSTLawsuit
(12) /lawsuitparty/lawsuit/{id}findAllLawsuitPartyOfLawsuit(id)ContentTypeModuleGETLawsuit LawsuitParty
(13) /lawsuitparty/company/{id}findAllLawsuitPartyOfCompany(id)ContentTypeModuleGETCompany LawsuitParty
(14) /lawsuitfindAllLawsuit()ContentTypeModuleGETLawsuit
(15) /lawsuitparty/{id}updateLawsuitPartyById(lawsuitparty)ContentTypeModulePUTLawsuitParty
(16) /lawsuit/{id}findLawsuitById(id)ContentTypeModuleGETLawsuit
(17) /contenttypeinsertContentType(contenttype)ContentTypeModulePOSTContentType






3.1 CONTENT TYPE


ContentTypeContentTypeModuleNetflix

Properties (1)

PropertyTypeEntityReferenceModule
(1) NameSTRINGContentType





Example:

final ContentType contenttype = (ContentType) invokeModule(CONTENT_TYPE_MODULE + "/contenttype/" + id, ContentType.class);
if (contenttype != null) {
}
return contenttype;


3.2 LAWSUIT


LawsuitContentTypeModuleNetflix

Properties (6)

PropertyTypeEntityReferenceModule
(1) CourtSTRINGLawsuit
(2) DescriptionSTRINGLawsuit
(3) FilingDateDATELawsuit
(4) NameSTRINGLawsuit
(5) OutcomeSTRINGLawsuit
(6) ResolutionDateDATELawsuit





Example:

final Lawsuit lawsuit = (Lawsuit) invokeModule(CONTENT_TYPE_MODULE + "/lawsuit/" + id, Lawsuit.class);
if (lawsuit != null) {
}
return lawsuit;


3.3 LAWSUIT PARTY


LawsuitPartyContentTypeModuleNetflix

Properties (3)

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





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