blob: 7182ca15151d4ace5cbbb4d903818c779987105d [file] [log] [blame]
package net.onrc.onos.core.matchaction.match;
import net.onrc.onos.core.util.IPv4Net;
public class Ipv4PacketMatch implements Match {
IPv4Net dstIp;
public Ipv4PacketMatch(String ipAddressSlash) {
this.dstIp = new IPv4Net(ipAddressSlash);
}
public IPv4Net getDestination() {
return dstIp;
}
}