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
10 * ZTE - initial API and implementation and/or initial documentation
12 package org.onap.sdc.workflowdesigner.model;
14 public class SequenceFlow {
15 private String id = "";
17 private String sourceRef;
18 private String targetRef;
19 private String documentation;
20 private String condition;
22 public String getId() {
26 public void setId(String id) {
30 public String getName() {
34 public void setName(String name) {
38 public String getSourceRef() {
42 public void setSourceRef(String sourceRef) {
43 this.sourceRef = sourceRef;
46 public String getTargetRef() {
50 public void setTargetRef(String targetRef) {
51 this.targetRef = targetRef;
54 public String getDocumentation() {
58 public void setDocumentation(String documentation) {
59 this.documentation = documentation;
62 public String getCondition() {
66 public void setCondition(String condition) {
67 this.condition = condition;