blob: ae4e7b24bda413de0977ef13b94c9383c1edb0d3 [file] [log] [blame]
/*
* 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.
*/
package workflow;
public class Connection {
private long id;
private long from_node;
private String from;
private long to_node;
private String to;
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public long getFrom_node() {
return from_node;
}
public void setFrom_node(long from_node) {
this.from_node = from_node;
}
public String getFrom() {
return from;
}
public void setFrom(String from) {
this.from = from;
}
public long getTo_node() {
return to_node;
}
public void setTo_node(long to_node) {
this.to_node = to_node;
}
public String getTo() {
return to;
}
public void setTo(String to) {
this.to = to;
}
}