Interface ManagerEntry

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<ManagerEntry>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.ChildOf<OvsdbNodeAttributes>, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject, org.opendaylight.yangtools.yang.binding.Identifiable<ManagerEntryKey>

    public interface ManagerEntry
    extends org.opendaylight.yangtools.yang.binding.ChildOf<OvsdbNodeAttributes>, org.opendaylight.yangtools.yang.binding.Augmentable<ManagerEntry>, org.opendaylight.yangtools.yang.binding.Identifiable<ManagerEntryKey>
    Node managers info

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

     list manager-entry {
       config false;
       key target;
       leaf target {
         type inet:uri;
       }
       leaf connected {
         type boolean;
       }
       leaf number_of_connections {
         type uint32;
       }
     }
     
    The schema path to identify an instance is ovsdb/ovsdb-node-attributes/manager-entry

    To create instances of this class use ManagerEntryBuilder.

    See Also:
    ManagerEntryBuilder, ManagerEntryKey
    • Field Detail

      • QNAME

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

      • implementedInterface

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

        @Nullable org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Uri getTarget()
        Uri that user set to connect to the controller
        Returns:
        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Uri target, or null if not present
      • isConnected

        @Nullable Boolean isConnected()
        Returns:
        java.lang.Boolean connected, or null if not present
      • getNumberOfConnections

        @Nullable org.opendaylight.yangtools.yang.common.Uint32 getNumberOfConnections()
        Returns:
        org.opendaylight.yangtools.yang.common.Uint32 numberOfConnections, or null if not present