6e7588a718678dfbab9e5168da85ae50098c5252
[sdc/sdc-workflow-designer.git] /
1 /**
2  * Copyright (c) 2017 ZTE Corporation.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the Apache License, Version 2.0
5  * and the Eclipse Public License v1.0 which both accompany this distribution,
6  * and are available at http://www.eclipse.org/legal/epl-v10.html
7  * and http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Contributors:
10  *     ZTE - initial API and implementation and/or initial documentation
11  */
12 package org.onap.sdc.workflowdesigner.model;
13
14 public class SequenceFlow {
15     private String id = "";
16     private String name;
17     private String sourceRef;
18     private String targetRef;
19     private String documentation;
20     private String condition;
21
22     public String getId() {
23         return id;
24     }
25
26     public void setId(String id) {
27         this.id = id;
28     }
29
30     public String getName() {
31         return name;
32     }
33
34     public void setName(String name) {
35         this.name = name;
36     }
37
38     public String getSourceRef() {
39         return sourceRef;
40     }
41
42     public void setSourceRef(String sourceRef) {
43         this.sourceRef = sourceRef;
44     }
45
46     public String getTargetRef() {
47         return targetRef;
48     }
49
50     public void setTargetRef(String targetRef) {
51         this.targetRef = targetRef;
52     }
53
54     public String getDocumentation() {
55         return documentation;
56     }
57
58     public void setDocumentation(String documentation) {
59         this.documentation = documentation;
60     }
61
62     public String getCondition() {
63         return condition;
64     }
65
66     public void setCondition(String condition) {
67         this.condition = condition;
68     }
69
70 }