Interface OdlInetBinaryTypesData

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

    @Generated("mdsal-binding-generator")
    public interface OdlInetBinaryTypesData
    extends org.opendaylight.yangtools.yang.binding.DataRoot
    Binary representation type definitions for IPv4 and IPv6 addresses and prefixes

    This class represents the following YANG schema fragment defined in module odl-inet-binary-types

     module odl-inet-binary-types {
       yang-version 1;
       namespace urn:opendaylight:lfm:inet-binary-types;
       prefix inet-binary;
       revision 2016-03-03 {
       }
       typedef ipv4-address-binary {
         type binary {
           length 4;
         }
       }
       typedef ipv6-address-binary {
         type binary {
           length 16;
         }
       }
       typedef ip-address-binary {
         type union {
           type ipv4-address-binary;
           type ipv6-address-binary;
         }
       }
     }