Bug:4995 vAdd molude: nemo-tools and remove the depency of cliche repositoty.
[nemo.git] / nemo-tools / sandbox / src / main / java / org / opendaylight / nemo / tool / sandbox / models / Router.java
1 /*
2  * Copyright (c) 2015 Huawei, Inc. 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
9 package org.opendaylight.nemo.tool.sandbox.models;
10
11 /**
12  * Created by hj on 12/8/15.
13  */
14 public class Router extends Switch {
15     public Router(String name, long dataPathId) {
16         super(name, dataPathId);
17     }
18 }