You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ze...@apache.org on 2022/03/12 13:47:39 UTC

[incubator-streampipes] branch STREAMPIPES-514 updated: [hotfix] Add class PipelineInput

This is an automated email from the ASF dual-hosted git repository.

zehnder pushed a commit to branch STREAMPIPES-514
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git


The following commit(s) were added to refs/heads/STREAMPIPES-514 by this push:
     new f56f6d9  [hotfix] Add class PipelineInput
f56f6d9 is described below

commit f56f6d94994bf406bb9b0d054cb6b145a2ed7695
Author: Philipp Zehnder <ze...@fzi.de>
AuthorDate: Sat Mar 12 14:45:57 2022 +0100

    [hotfix] Add class PipelineInput
---
 ui/cypress/support/model/PipelineInput.ts | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/ui/cypress/support/model/PipelineInput.ts b/ui/cypress/support/model/PipelineInput.ts
new file mode 100644
index 0000000..bb8fd2c
--- /dev/null
+++ b/ui/cypress/support/model/PipelineInput.ts
@@ -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.
+ *
+ */
+
+import { PipelineElementInput } from './PipelineElementInput';
+
+export class PipelineInput {
+    pipelineName: string;
+    dataSource: string;
+    dataSourceType: string | 'stream' | 'set';
+
+    processingElement: PipelineElementInput;
+
+    dataSink: PipelineElementInput;
+}