Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
ForschungsinstitutApp
Please create a React-JS application for the ForschungsinstitutModule. The application has to offer the following views for the user interface: 1. BildungsprogrammView 2. ForschungsinstitutView 3. ForschungsKooperationView 4. HabitatKonzeptView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 4 views are defined below. 1. The BildungsprogrammView must contain the following fields: - name: Beschreibung type: STRING - name: DauerMinuten type: LONG - name: IstGefuehrt type: BOOL - name: Name type: STRING - name: Zielgruppe type: STRING - name: Zoo type: Zoo The data source for the [Zoo] select control should be loaded from the relative URL: "/ZooService/zoo" (HTTP-GET) An existing Bildungsprogramm entity should be loaded from the relative URL: "/ForschungsinstitutService/bildungsprogramm/{id}" (HTTP-GET) If a new Bildungsprogramm entity has been created, the new entity should be posted to the relative URL: "/ForschungsinstitutService/bildungsprogramm" (HTTP-POST) If an existing Bildungsprogramm entity has been updated, the modified entity should be sent to the relative URL: "/ForschungsinstitutService/bildungsprogramm/{id}" (HTTP-PUT) If an existing Bildungsprogramm entity has to be deleted, the following relative URL should be called: "/ForschungsinstitutService/bildungsprogramm/{id}" (HTTP-DELETE) 2. The ForschungsinstitutView must contain the following fields: - name: Beschreibung type: STRING - name: Land type: STRING - name: Name type: STRING - name: Stadt type: STRING - name: Typ type: STRING - name: Webseite type: STRING An existing Forschungsinstitut entity should be loaded from the relative URL: "/ForschungsinstitutService/forschungsinstitut/{id}" (HTTP-GET) If a new Forschungsinstitut entity has been created, the new entity should be posted to the relative URL: "/ForschungsinstitutService/forschungsinstitut" (HTTP-POST) If an existing Forschungsinstitut entity has been updated, the modified entity should be sent to the relative URL: "/ForschungsinstitutService/forschungsinstitut/{id}" (HTTP-PUT) If an existing Forschungsinstitut entity has to be deleted, the following relative URL should be called: "/ForschungsinstitutService/forschungsinstitut/{id}" (HTTP-DELETE) Add a HTML table to the view with the following ForschungsKooperation columns: - column: Beschreibung - column: Zoo - column: Forschungsinstitut - column: Startjahr - column: Endjahr - column: Thema The table should have the title "ForschungsKooperations" und the data must be loaded from the server with the following relative URL: "/ForschungsinstitutService/forschungskooperation/forschungsinstitut/{id}" 3. The ForschungsKooperationView must contain the following fields: - name: Beschreibung type: STRING - name: Endjahr type: LONG - name: Forschungsinstitut type: Forschungsinstitut - name: Startjahr type: LONG - name: Thema type: STRING - name: Zoo type: Zoo The data source for the [Zoo] select control should be loaded from the relative URL: "/ZooService/zoo" (HTTP-GET) The data source for the [Forschungsinstitut] select control should be loaded from the relative URL: "/ForschungsinstitutService/forschungsinstitut" (HTTP-GET) An existing ForschungsKooperation entity should be loaded from the relative URL: "/ForschungsinstitutService/forschungskooperation/{id}" (HTTP-GET) If a new ForschungsKooperation entity has been created, the new entity should be posted to the relative URL: "/ForschungsinstitutService/forschungskooperation" (HTTP-POST) If an existing ForschungsKooperation entity has been updated, the modified entity should be sent to the relative URL: "/ForschungsinstitutService/forschungskooperation/{id}" (HTTP-PUT) If an existing ForschungsKooperation entity has to be deleted, the following relative URL should be called: "/ForschungsinstitutService/forschungskooperation/{id}" (HTTP-DELETE) 4. The HabitatKonzeptView must contain the following fields: - name: Beschreibung type: STRING - name: ErstNutzungJahr type: LONG - name: Name type: STRING - name: Ursprungsland type: STRING An existing HabitatKonzept entity should be loaded from the relative URL: "/ForschungsinstitutService/habitatkonzept/{id}" (HTTP-GET) If a new HabitatKonzept entity has been created, the new entity should be posted to the relative URL: "/ForschungsinstitutService/habitatkonzept" (HTTP-POST) If an existing HabitatKonzept entity has been updated, the modified entity should be sent to the relative URL: "/ForschungsinstitutService/habitatkonzept/{id}" (HTTP-PUT) If an existing HabitatKonzept entity has to be deleted, the following relative URL should be called: "/ForschungsinstitutService/habitatkonzept/{id}" (HTTP-DELETE) Add a HTML table to the view with the following ZooHabitatKonzeptNutzung columns: - column: ErstesGehege - column: Notizen - column: HabitatKonzept - column: Zoo The table should have the title "ZooHabitatKonzeptNutzungs" und the data must be loaded from the server with the following relative URL: "/ZooService/zoohabitatkonzeptnutzung/habitatkonzept/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum