"long" changed to "Long" so an un-supplied account ID comes in as null instead of as 0
Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/6bee8755 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/6bee8755 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/6bee8755 Branch: refs/heads/sf-plugins Commit: 6bee87555a3f0821dddcf9bf78a2150525a0ce2d Parents: 9ecc358 Author: Mike Tutkowski <[email protected]> Authored: Fri Jul 10 18:52:09 2015 -0600 Committer: Mike Tutkowski <[email protected]> Committed: Fri Sep 18 19:28:20 2015 -0600 ---------------------------------------------------------------------- .../command/user/solidfire/ListSolidFireVirtualNetworksCmd.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/6bee8755/plugins/api/solidfire/src/org/apache/cloudstack/api/command/user/solidfire/ListSolidFireVirtualNetworksCmd.java ---------------------------------------------------------------------- diff --git a/plugins/api/solidfire/src/org/apache/cloudstack/api/command/user/solidfire/ListSolidFireVirtualNetworksCmd.java b/plugins/api/solidfire/src/org/apache/cloudstack/api/command/user/solidfire/ListSolidFireVirtualNetworksCmd.java index 750f1c8..2ec91a1 100644 --- a/plugins/api/solidfire/src/org/apache/cloudstack/api/command/user/solidfire/ListSolidFireVirtualNetworksCmd.java +++ b/plugins/api/solidfire/src/org/apache/cloudstack/api/command/user/solidfire/ListSolidFireVirtualNetworksCmd.java @@ -53,7 +53,7 @@ public class ListSolidFireVirtualNetworksCmd extends BaseListCmd { private Long _zoneId; @Parameter(name = ApiConstants.ACCOUNT_ID, type = CommandType.UUID, entityType = AccountResponse.class, description = ApiHelper.ACCOUNT_ID_DESC) - private long _accountId; + private Long _accountId; @Inject private ApiHelper _apiHelper;
