Interface InstructionStatusChanged

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<InstructionStatusChanged>, org.opendaylight.yangtools.yang.binding.BaseNotification, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject, org.opendaylight.yangtools.yang.binding.Notification

    public interface InstructionStatusChanged
    extends org.opendaylight.yangtools.yang.binding.DataObject, org.opendaylight.yangtools.yang.binding.Augmentable<InstructionStatusChanged>, org.opendaylight.yangtools.yang.binding.Notification

    This class represents the following YANG schema fragment defined in module programming

     notification instruction-status-changed {
       leaf id {
         type instruction-id;
       }
       leaf status {
         type instruction-status;
       }
       container details {
         leaf-list unmet-dependencies {
           when "../../status = cancelled";
           type instruction-id;
         }
       }
     }
     
    The schema path to identify an instance is programming/instruction-status-changed

    To create instances of this class use InstructionStatusChangedBuilder.

    See Also:
    InstructionStatusChangedBuilder
    • Field Detail

      • QNAME

        static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
    • Method Detail

      • implementedInterface

        default Class<InstructionStatusChanged> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getId

        @Nullable InstructionId getId()
        Instruction identifier.
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev150720.InstructionId id, or null if not present
      • getStatus

        @Nullable InstructionStatus getStatus()
        New status of the instruction.
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev150720.InstructionStatus status, or null if not present
      • getDetails

        @Nullable Details getDetails()
        More details about the instruction state.
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev150720.instruction.status.changed.Details details, or null if not present