julien-vaz commented on code in PR #10506:
URL: https://github.com/apache/cloudstack/pull/10506#discussion_r1993943395
##########
plugins/database/quota/src/main/java/org/apache/cloudstack/api/command/QuotaStatementCmd.java:
##########
@@ -55,15 +56,18 @@ public class QuotaStatementCmd extends BaseCmd {
ApiConstants.PARAMETER_DESCRIPTION_START_DATE_POSSIBLE_FORMATS)
private Date startDate;
- @Parameter(name = ApiConstants.TYPE, type = CommandType.INTEGER,
description = "List quota usage records for the specified usage type")
+ @Parameter(name = ApiConstants.TYPE, type = CommandType.INTEGER,
description = "List quota usage records for the specified usage type.")
private Integer usageType;
@ACL
@Parameter(name = ApiConstants.ACCOUNT_ID, type = CommandType.UUID,
entityType = AccountResponse.class, description = "List usage records for the
specified account")
private Long accountId;
+ @Parameter(name = ApiConstants.SHOW_RESOURCES, type = CommandType.BOOLEAN,
description = "List the resources of each quota type in the period.")
+ private boolean showResources;
+
@Inject
- private QuotaResponseBuilder _responseBuilder;
+ protected QuotaResponseBuilder responseBuilder;
Review Comment:
Oh, didn't know that about Java. Thanks for the explanation. I will leave it
in package scope then
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]