-
Notifications
You must be signed in to change notification settings - Fork 189
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* feat(#3033): Support modification of data views (#3034) * feat(#3033): Support modification of data views * Fix checkstyle * Fix cypress * Remove cypress selector * feat(#3043): Add data view selection to data explorer dashboard (#3044) * feat(#3043): Add data view selection to data explorer dashboard * Add routing service * Fix cypress tests and modify routing * feat(3059): Extend capabilities of time selection bar (#3066) * feat(#3059): Replace time selection bar with menu * Fix tests * Support global and widget time * Fix time update * feat(#3068): Add refresh interval to data explorer dashboard (#3069) * feat(#3068): Add refresh interval to data explorer dashboard * Remove empty stylesheet * feat(#3079): Add permission management to data views (#3082) * feat(#3079): Add migration for existing data views * Fix checkstyle * Add permissions to rest interface * feat(#3091): Add option to configure time ordering (#3092) * feat(#3091): Add option to configure time ordering * Remove deprecated model * Fix checkstyle * test: Add time order test + minor changes (#3113) * added time order test + minor changes * minor changes for e2e test --------- Co-authored-by: Marcelfrueh <[email protected]> * feat(#3090): Add gauge chart to data explorer (#3127) * feat(#3090): Add gauge chart to data explorer * Cleanup * Fix tests * Add dialog window for deleting data views/dashboards and test functionality with new E2E-test (#3137) * Add dialog window for deletion of data view and dashboards + add tests for this feature * Enhance test with cancellation of deletion * bug fixes and minor changes in data explorer * new functions for data lake utils + fixes for delete-widget-test * Update ts model --------- Co-authored-by: Marcelfrueh <[email protected]>
- Loading branch information
1 parent
a5c6e2d
commit 6cce352
Showing
132 changed files
with
4,411 additions
and
1,735 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
...in/java/org/apache/streampipes/resource/management/DataExplorerWidgetResourceManager.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
package org.apache.streampipes.resource.management; | ||
|
||
import org.apache.streampipes.model.datalake.DataExplorerWidgetModel; | ||
import org.apache.streampipes.storage.api.CRUDStorage; | ||
|
||
public class DataExplorerWidgetResourceManager extends AbstractCRUDResourceManager<DataExplorerWidgetModel> { | ||
|
||
public DataExplorerWidgetResourceManager(CRUDStorage<DataExplorerWidgetModel> db) { | ||
super(db, DataExplorerWidgetModel.class); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.