Merge changes I4a8650ae,Ie2e119fd,Ic2acced7,Ieeb5ae5b,I2f7b6f8f
authorFlavio Fernandes <ffernand@redhat.com>
Fri, 6 Nov 2015 23:17:52 +0000 (23:17 +0000)
committerGerrit Code Review <gerrit@opendaylight.org>
Fri, 6 Nov 2015 23:17:52 +0000 (23:17 +0000)
* changes:
  Fixed wildcarded imports
  Fixed NPE in md-sal secutiry groups to neutron security group conversion.
  Removed Flow id caches that is being used to check
  Populate the Node Cache at the controller start/restart.
  Repopulate router, port and floating ip related caches These caches can create a problem in a cluster environment where node goes down and rejoin the cluster. All the caches will be clear on restart, and if newly join node become master instance, it can break the functionality. This patch is re-populating all the required caches

1  2 
utils/mdsal-utils/pom.xml

index d3f093b967801c98411a72080b844767058e6bf8,1cd7a8d6aa8905f98ce2152320faab93fb43ff56..11ddb71dd893cf3145bbb52d631b1a3d5b43d3b0
        <artifactId>mockito-all</artifactId>
        <scope>test</scope>
      </dependency>
+     <dependency>
+       <groupId>org.opendaylight.neutron</groupId>
+       <artifactId>model</artifactId>
+       <version>${neutron.model.version}</version>
+     </dependency>
    </dependencies>
  
 +  <build>
 +    <plugins>
 +      <plugin>
 +        <groupId>org.apache.felix</groupId>
 +        <artifactId>maven-bundle-plugin</artifactId>
 +        <extensions>true</extensions>
 +        <configuration>
 +          <instructions>
 +            <Export-Package>
 +              org.opendaylight.ovsdb.utils.mdsal.utils
 +            </Export-Package>
 +          </instructions>
 +        </configuration>
 +      </plugin>
 +    </plugins>
 +  </build>
  </project>