2 * Copyright (c) 2017-2018 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 import java.util.List;
16 public class Element {
27 intermediateCatchEvent
33 private String documentation;
34 private Position position;
35 private List<String> connections;
37 public String getId() {
41 public Position getPosition() {
45 public void setPosition(Position position) {
46 this.position = position;
49 public List<String> getConnections() {
53 public void setConnections(List<String> connections) {
54 this.connections = connections;
57 public void setId(String id) {
61 public String getName() {
65 public void setName(String name) {
69 public String getDocumentation() {
73 public void setDocumentation(String documentation) {
74 this.documentation = documentation;
77 public TYPE getType() {
81 public void setType(TYPE type) {