Overview
Summary
Contact
Donate
Imprint
Prompt for the
LegalCaseView
Please create a React-JS view called "LegalCaseView" for the fields of the LegalCase entity. The LegalCaseView must contain the following fields: - name: CaseType type: STRING - name: FilingDate type: DATE - name: Jurisdiction type: STRING - name: Outcome type: STRING - name: ResolutionDate type: DATE - name: Summary type: STRING - name: Title type: STRING An existing LegalCase entity should be loaded from the relative URL: "/LegalCaseService/legalcase/{id}" (HTTP-GET) If a new LegalCase entity has been created, the new entity should be posted to the relative URL: "/LegalCaseService/legalcase" (HTTP-POST) If an existing LegalCase entity has been updated, the modified entity should be sent to the relative URL: "/LegalCaseService/legalcase/{id}" (HTTP-PUT) If an existing LegalCase entity has to be deleted, the following relative URL should be called: "/LegalCaseService/legalcase/{id}" (HTTP-DELETE) Add a HTML table to the view with the following LegalCaseParty columns: - column: LegalParty - column: LegalCase - column: RoleInCase The table should have the title "LegalCasePartys" und the data must be loaded from the server with the following relative URL: "/LegalPartyService/legalcaseparty/legalcase/{id}" Add a HTML table to the view with the following RegulatoryAction columns: - column: Outcome - column: RelatedLegalCase - column: Description - column: Country - column: ActionDate - column: AgencyName The table should have the title "RegulatoryActions" und the data must be loaded from the server with the following relative URL: "/LegalCaseService/regulatoryaction/relatedlegalcase/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint