From 626d74e4c51aa47da5d5d643b5b7a04188b5552a Mon Sep 17 00:00:00 2001 From: Lvbo163 Date: Thu, 31 Aug 2017 14:29:07 +0800 Subject: support set parameter for workflow support set input and output params for start event Issue-ID: SDC-120 Change-Id: Ib5a87692e06817b2676b3f2f2223e1ced117b5c9 Signed-off-by: Lvbo163 --- .../src/app/model/workflow/sequence-flow.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 sdc-workflow-designer-ui/src/app/model/workflow/sequence-flow.ts (limited to 'sdc-workflow-designer-ui/src/app/model/workflow/sequence-flow.ts') diff --git a/sdc-workflow-designer-ui/src/app/model/workflow/sequence-flow.ts b/sdc-workflow-designer-ui/src/app/model/workflow/sequence-flow.ts new file mode 100644 index 00000000..492cc84d --- /dev/null +++ b/sdc-workflow-designer-ui/src/app/model/workflow/sequence-flow.ts @@ -0,0 +1,16 @@ +/** + * Copyright (c) 2017 ZTE Corporation. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * and the Apache License 2.0 which both accompany this distribution, + * and are available at http://www.eclipse.org/legal/epl-v10.html + * and http://www.apache.org/licenses/LICENSE-2.0 + * + * Contributors: + * ZTE - initial API and implementation and/or initial documentation + */ + +export class SequenceFlow { + + constructor(public sourceRef: string, public targetRef: string, public name?: string, public condition?:string) { } +} -- cgit 1.2.3-korg