Interface DhcpserviceApiData

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.DataRoot

    public interface DhcpserviceApiData
    extends org.opendaylight.yangtools.yang.binding.DataRoot

    This class represents the following YANG schema fragment defined in module dhcpservice-api

     module dhcpservice-api {
       yang-version 1;
       namespace urn:opendaylight:params:xml:ns:yang:dhcpservice:api;
       prefix dhcpservice-api;
       revision 2015-07-10 {
       }
       container interface-name-mac-addresses {
         config false;
         list interface-name-mac-address {
           key interface-name;
           leaf interface-name {
             type string;
           }
           leaf mac-address {
             type string;
           }
         }
       }
       container subnet-dhcp-port-data {
         list subnet-to-dhcp-port {
           key subnet-id;
           leaf subnet-id {
             type string;
           }
           leaf port-name {
             type string;
           }
           leaf port-fixedip {
             type string;
           }
           leaf port-macaddress {
             type string;
           }
         }
       }
     }
     
    • Method Detail

      • getInterfaceNameMacAddresses

        @Nullable InterfaceNameMacAddresses getInterfaceNameMacAddresses()
        Container to hold list of interface names and MAC address
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.dhcpservice.api.rev150710.InterfaceNameMacAddresses interfaceNameMacAddresses, or null if not present
      • getSubnetDhcpPortData

        @Nullable SubnetDhcpPortData getSubnetDhcpPortData()
        Container to hold DHCP Neutron Port information allocated for the Subnet
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.dhcpservice.api.rev150710.SubnetDhcpPortData subnetDhcpPortData, or null if not present