Merge "creating a default subnet"
[controller.git] / opendaylight / md-sal / sal-common-api / src / main / java / org / opendaylight / controller / md / sal / common / api / routing / Route.java
1 package org.opendaylight.controller.md.sal.common.api.routing;
2
3 import org.opendaylight.yangtools.concepts.Immutable;
4
5 public interface Route<C,P> extends Immutable {
6
7     C getType();
8     
9     P getPath();
10 }