Overview
Summary
Contact
Donate
Imprint
Prompt for the
DataSourceView
Please create a React-JS view called "DataSourceView" for the fields of the DataSource entity. The DataSourceView must contain the following fields: - name: Description type: STRING - name: IsBigData type: BOOL - name: Name type: STRING - name: Provider type: STRING - name: SourceType type: STRING An existing DataSource entity should be loaded from the relative URL: "/DataSourceService/datasource/{id}" (HTTP-GET) If a new DataSource entity has been created, the new entity should be posted to the relative URL: "/DataSourceService/datasource" (HTTP-POST) If an existing DataSource entity has been updated, the modified entity should be sent to the relative URL: "/DataSourceService/datasource/{id}" (HTTP-PUT) If an existing DataSource entity has to be deleted, the following relative URL should be called: "/DataSourceService/datasource/{id}" (HTTP-DELETE) Add a HTML table to the view with the following HistoricalDataSet columns: - column: DataSource - column: Name - column: AssetUniverseDescription - column: Description - column: StartDate - column: AladdinSystem - column: EndDate The table should have the title "HistoricalDataSets" und the data must be loaded from the server with the following relative URL: "/AladdinSystemService/historicaldataset/datasource/{id}" Add a HTML table to the view with the following BigDataSource columns: - column: DataSource - column: PrivacyRiskLevel - column: Category - column: Description The table should have the title "BigDataSources" und the data must be loaded from the server with the following relative URL: "/DataSourceService/bigdatasource/datasource/{id}" Add a HTML table to the view with the following AladdinDataSource columns: - column: UsagePurpose - column: DataSource - column: AladdinSystem - column: EndDate - column: StartDate The table should have the title "AladdinDataSources" und the data must be loaded from the server with the following relative URL: "/AladdinSystemService/aladdindatasource/datasource/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint