blob: 14a39c8b65e866122bd2840186b708136867278d [file] [log] [blame]
package net.onrc.onos.core.matchaction.action;
public class SetMplsIdAction implements Action {
private final int mplsId;
public SetMplsIdAction(int id) {
this.mplsId = id;
}
public int getMplsId() {
return this.mplsId;
}
}