Interface SalGroupListener

  • All Superinterfaces:
    EventListener, org.opendaylight.yangtools.yang.binding.NotificationListener

    public interface SalGroupListener
    extends org.opendaylight.yangtools.yang.binding.NotificationListener
    Interface for implementing the following YANG notifications defined in module sal-group
     notification group-added {
       status deprecated;
       uses tr:transaction-metadata;
       leaf group-ref {
         type group-type:group-ref;
       }
       uses node-group;
       uses tr:transaction-aware;
     }
     notification group-updated {
       status deprecated;
       uses tr:transaction-metadata;
       leaf group-ref {
         type group-type:group-ref;
       }
       uses node-group;
       uses tr:transaction-aware;
     }
     notification group-removed {
       status deprecated;
       uses tr:transaction-metadata;
       leaf group-ref {
         type group-type:group-ref;
       }
       uses node-group;
       uses tr:transaction-aware;
     }
     
    • Method Detail

      • onGroupAdded

        void onGroupAdded​(GroupAdded notification)
      • onGroupUpdated

        void onGroupUpdated​(GroupUpdated notification)
      • onGroupRemoved

        void onGroupRemoved​(GroupRemoved notification)