Fix minor bug in FRM proactive flow code path
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-binding / src / main / java / org / opendaylight / controller / yang / binding / Augmentable.java
1 package org.opendaylight.controller.yang.binding;
2
3 public interface Augmentable<T> {
4
5     <E extends Augmentation<T>> E getAugmentation(Class<E> augmentationType);
6 }