Add implementation for GPE native forwarding
[groupbasedpolicy.git] / renderers / vpp / src / main / java / org / opendaylight / groupbasedpolicy / renderer / vpp / commands / lisp / DeleteGpeFeatureDataCommand.java
1 /*
2  * Copyright (c) 2017 Cisco Systems. All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.groupbasedpolicy.renderer.vpp.commands.lisp;
9
10 import org.opendaylight.groupbasedpolicy.renderer.vpp.util.VppIidFactory;
11 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.gpe.rev170518.gpe.feature.data.grouping.GpeFeatureData;
12 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
13 import org.slf4j.Logger;
14 import org.slf4j.LoggerFactory;
15
16 /**
17  * Created by Shakib Ahmed on 6/21/17.
18  */
19 public class DeleteGpeFeatureDataCommand  extends AbstractLispCommand<GpeFeatureData> {
20     private static final Logger LOG = LoggerFactory.getLogger(DeleteGpeFeatureDataCommand.class);
21
22     @Override
23     public InstanceIdentifier<GpeFeatureData> getIid() {
24         return VppIidFactory.getGpeFeatureDataIid();
25     }
26
27     @Override
28     public GpeFeatureData getData() {
29         LOG.debug("Delete commands should not invoke getData()");
30         return null;
31     }
32 }