hungphan227 commented on code in PR #1707:
URL: https://github.com/apache/james-project/pull/1707#discussion_r1316723298


##########
server/protocols/webadmin/webadmin-mailbox/src/main/java/org/apache/james/webadmin/routes/UserQuotaRoutes.java:
##########
@@ -99,17 +101,22 @@ private static Optional<Integer> intQueryParameter(Request 
request) {
             }
         }
 
-        private static Optional<QuotaComponent> getQuotaComponent(Request 
request) {
-            String quotaComponentString = 
request.queryParams(USERS_PER_SECOND);
-            if (Objects.isNull(quotaComponentString)) {
-                return Optional.empty();
+        private static List<QuotaComponent> getQuotaComponent(Request request) 
{
+            List<QuotaComponent> quotaComponents = new ArrayList<>();
+            String[] quotaComponentStrings = 
request.queryParamsValues(QUOTA_COMPONENT);

Review Comment:
   Because I have to throw exception if any quotaComponentString is wrong, it 
is difficult to use stream



-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to