Vxlan/Gre co-existence,Alarms,tunnelstate,TR fixes
[vpnservice.git] / itm / itm-impl / src / main / java / org / opendaylight / vpnservice / itm / cli / TepStateShow.java
1 /*
2  * Copyright (c) 2016 Ericsson India Global Services Pvt Ltd. and others.  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.vpnservice.itm.cli;
9
10 import org.apache.karaf.shell.console.OsgiCommandSupport;
11 import org.apache.karaf.shell.commands.Argument;
12 import org.apache.karaf.shell.commands.Command;
13 import org.apache.karaf.shell.commands.Option;
14
15 @Command(scope = "tep", name = "state-show", description="Monitors tunnel state")
16
17     public class TepStateShow extends OsgiCommandSupport {
18
19        @Override
20
21        protected Object doExecute() throws Exception {
22
23               System.out.println("Executing show TEP states command");
24
25        return null;
26
27        }
28     }