blob: 245a9184b56bedcacce0557da47b2e3f4d17ccc5 [file] [log] [blame]
Brian O'Connor7f8e3012014-02-15 23:59:29 -08001package net.onrc.onos.intent;
2
3import net.onrc.onos.ofcontroller.networkgraph.Port;
4
5/**
6 *
7 * @author Brian O'Connor <bocon@onlab.us>
8 *
9 */
10
11class ForwardAction extends Action {
12 protected Port dstPort;
13
14 public ForwardAction(Port dstPort) {
15 this.dstPort = dstPort;
16 }
17
18 public String toString() {
19 return dstPort.toString();
20 }
21
22}