Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. The config subsystem, which was deprecated in Oxygen, has been removed in Fluorine.  Any components that have not already migrated to Aries Blueprint will need to do so in order to run on Fluorine.
  2. The DataChangeListener interface, which was deprecated in Oxygen, has been removed in Fluorine.  Any code using DataChangeListener must be rewritten to use DataTreeChangeListener interface instead.
  3. The controller EntityOwnershipService interface, deprecated in Oxygen, has been removed in Fluorine.  Any code using the controller EntityOwnershipService interface must migrate to the mdsal EntityOwnershipService instead.
  4. The controller liblldp module has been moved to the openflowplugin project.
  5. The  2010-09-24 revision of the ietf-inet-types Yang model is no longer provided in Fluorine.  Also, the dependency for ietf-net-types has changed.  This requires the following code changes:
    1. Yang models that import ietf-inet-types revision 2010-09-24 should replace the revision with 2013-07-15
    2. In imports, package name 
          org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924
      must be rewritten to:
          org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715
    3. The dependency to include this model should be:
       <dependency>
      <groupId>org.opendaylight.mdsal.model</groupId>
      <artifactId>ietf-inet-types-2013-07-15</artifactId>
      </dependency>
       
  6. The dependency for the ietf-yang-types yang classes has changed.  The new dependency to include this model is:

...