Overview
Summary
Contact
Donate
Imprint
Prompt for the
ServiceDeploymentView
Please create a React-JS view called "ServiceDeploymentView" for the fields of the ServiceDeployment entity. The ServiceDeploymentView must contain the following fields: - name: AverageThroughputMbitPerSec type: STRING - name: Description type: STRING - name: EndDate type: DATE - name: IsEmergencyDeployment type: BOOL - name: PeakUsers type: INT - name: Project type: Project - name: ServiceArea type: ServiceArea - name: StartDate type: DATE The data source for the [Project] select control should be loaded from the relative URL: "/ProjectService/project" (HTTP-GET) The data source for the [ServiceArea] select control should be loaded from the relative URL: "/RegionService/servicearea" (HTTP-GET) An existing ServiceDeployment entity should be loaded from the relative URL: "/ServiceDeploymentService/servicedeployment/{id}" (HTTP-GET) If a new ServiceDeployment entity has been created, the new entity should be posted to the relative URL: "/ServiceDeploymentService/servicedeployment" (HTTP-POST) If an existing ServiceDeployment entity has been updated, the modified entity should be sent to the relative URL: "/ServiceDeploymentService/servicedeployment/{id}" (HTTP-PUT) If an existing ServiceDeployment entity has to be deleted, the following relative URL should be called: "/ServiceDeploymentService/servicedeployment/{id}" (HTTP-DELETE) Add a HTML table to the view with the following DeploymentPartner columns: - column: RoleDescription - column: PartnerOrganization - column: ServiceDeployment The table should have the title "DeploymentPartners" und the data must be loaded from the server with the following relative URL: "/ServiceDeploymentService/deploymentpartner/servicedeployment/{id}" Add a HTML table to the view with the following DeploymentDisasterEvent columns: - column: DisasterEvent - column: ServiceDeployment The table should have the title "DeploymentDisasterEvents" und the data must be loaded from the server with the following relative URL: "/WindLayerService/deploymentdisasterevent/servicedeployment/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint