blob: 5dfdfaea54ff9bc80c36e30104a9ef23eaee3a23 [file] [log] [blame]
package net.onrc.onos.core.matchaction.action;
import net.floodlightcontroller.core.IOF13Switch.NeighborSet;
import net.onrc.onos.core.util.Dpid;
public class GroupAction implements Action {
NeighborSet fwdSws;
public GroupAction() {
fwdSws = new NeighborSet();
}
public void addSwitch(Dpid d) {
fwdSws.addDpid(d);
}
public NeighborSet getDpids() {
return fwdSws;
}
}