1 package org.openkilda.pce.provider;
3 import java.io.Serializable;
9 public final class FlowInfo implements Serializable {
10 private String flowId;
12 private int transitVlanId;
14 private String srcSwitchId;
18 public FlowInfo(String flowId,
long cookie,
int transitVlanId,
int meterId, String srcSwitchId) {
21 this.transitVlanId = transitVlanId;
22 this.meterId = meterId;
23 this.srcSwitchId = srcSwitchId;
49 this.transitVlanId = transitVlanId;
58 this.meterId = meterId;
67 this.srcSwitchId = srcSwitchId;
FlowInfo(String flowId, long cookie, int transitVlanId, int meterId, String srcSwitchId)
FlowInfo setFlowId(String flowId)
FlowInfo setCookie(long cookie)
FlowInfo setMeterId(int meterId)
FlowInfo setSrcSwitchId(String srcSwitchId)
FlowInfo setTransitVlanId(int transitVlanId)