blob: 38f5617f1afac4a6ac8ecfcc9b842da5b34d5e54 [file] [log] [blame]
package net.onrc.onos.core.matchaction.action;
import org.projectfloodlight.openflow.types.EthType;
public class PopMplsAction implements Action {
private final EthType ethtype;
public PopMplsAction(EthType ethtype) {
this.ethtype = ethtype;
}
public EthType getEthType() {
return ethtype;
}
}