Search in sources :

Example 1 with InstructionStatus

use of org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev150720.InstructionStatus in project bgpcep by opendaylight.

the class MockedNotificationServiceWrapper method assertInstructionStatusChangedNotification.

void assertInstructionStatusChangedNotification(final int idx, final InstructionId id, final InstructionStatus status) {
    assertTrue(InstructionStatusChanged.class.isAssignableFrom(this.publishedNotifications.get(idx).getClass()));
    final InstructionStatusChanged firstNotification = (InstructionStatusChanged) this.publishedNotifications.get(idx);
    assertInstructionStatusChangedNotification(id, status, firstNotification);
}
Also used : InstructionStatusChanged(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev150720.InstructionStatusChanged)

Aggregations

InstructionStatusChanged (org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev150720.InstructionStatusChanged)1