BUG-47 : removed PCEPMessage interface, switched to generated Message.
[bgpcep.git] / pcep / api / src / main / java / org / opendaylight / protocol / pcep / PCEPSessionListener.java
index be42b4372d3f8e1b3509b6dc5426e63dd18f7484..20ff395ed12d4d5cbd2730d626e00f35099c65da 100644 (file)
@@ -8,10 +8,11 @@
 package org.opendaylight.protocol.pcep;
 
 import org.opendaylight.protocol.framework.SessionListener;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.Message;
 
 /**
  * Listener that receives session informations from the session.
  */
-public interface PCEPSessionListener extends SessionListener<PCEPMessage, PCEPSession, PCEPTerminationReason> {
+public interface PCEPSessionListener extends SessionListener<Message, PCEPSession, PCEPTerminationReason> {
 
 }