Do not rely on deprecated classes directly
[bgpcep.git] / bgp / parser-api / src / main / java / org / opendaylight / protocol / bgp / parser / BGPMessageFactory.java
index 1c25f27768cfcb9927949500fa001a39a71f2f48..7406943cca040af5ee7235466dcb54b4c3925515 100644 (file)
@@ -14,5 +14,6 @@ import org.opendaylight.yangtools.yang.binding.Notification;
  * Interface to expose BGP specific MessageFactory.
  */
 public interface BGPMessageFactory extends ProtocolMessageFactory<Notification> {
-
+       @Override
+       public Notification parse(final byte[] bytes) throws BGPParsingException, BGPDocumentedException;
 }