cloudstack/plugins/network-elements/ovs
Wilder Rodrigues 13eb789388 CLOUDSTACK-9106 - Makes the router commands call more consistent.
- Checks the result of a call against the previous result. Either both are true or the method returns false.
   - Do not thrown exceptions because some calls are not handling/rethrowing them. It would cause runtime problems.
   - When doing a list.addAll(Arrays.asList(String[]{}) will cause problems when trying to cast the list.toArray() into an aray of String
     It would only work if instead of calling addAll() I would pass it straight into the constructor:
     e.g. List<String> l = new ArrayList(Arrays.asList(new String[]{});
          Stirng [] s = (String[]) l.toArray();
     But I did not like that implementation because it would require 2 arrays of string and combine them at the end.
2015-12-07 13:40:12 +01:00
..
resources/META-INF/cloudstack/ovs add support for sequence numner in the VPC topology updates and VPC 2014-04-25 15:02:17 +05:30
src/com/cloud CLOUDSTACK-9106 - Makes the router commands call more consistent. 2015-12-07 13:40:12 +01:00
pom.xml Updating pom.xml version numbers for release 4.6.1-SNAPSHOT 2015-11-13 21:27:57 +01:00