blob: 38f5617f1afac4a6ac8ecfcc9b842da5b34d5e54 [file] [log] [blame]
Sangho Shin8a759742014-09-25 14:31:18 -07001package net.onrc.onos.core.matchaction.action;
2
Saurav Dasbc594a42014-09-25 20:13:50 -07003import org.projectfloodlight.openflow.types.EthType;
4
Sangho Shin8a759742014-09-25 14:31:18 -07005public class PopMplsAction implements Action {
Saurav Dasbc594a42014-09-25 20:13:50 -07006 private final EthType ethtype;
Sangho Shin8a759742014-09-25 14:31:18 -07007
Saurav Dasbc594a42014-09-25 20:13:50 -07008 public PopMplsAction(EthType ethtype) {
9 this.ethtype = ethtype;
10 }
Sangho Shin8a759742014-09-25 14:31:18 -070011
Saurav Dasbc594a42014-09-25 20:13:50 -070012 public EthType getEthType() {
13 return ethtype;
Sangho Shin8a759742014-09-25 14:31:18 -070014 }
15}