This is an automated email from the ASF dual-hosted git repository. btellier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit da5884a0f5940f803349e1ad290ee94b78e66a64 Author: Benoit Tellier <[email protected]> AuthorDate: Fri Mar 6 23:05:23 2020 +0700 JAMES-3105 Webadmin endpoint to recompute mailbox counters Proposed endpoint: ``` curl -XPST http://ip:port/mailboxes?task=RecomputeMailboxCounters ``` --- .../RecomputeMailboxCountersRequestToTask.java | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/server/protocols/webadmin/webadmin-cassandra/src/main/java/org/apache/james/webadmin/routes/RecomputeMailboxCountersRequestToTask.java b/server/protocols/webadmin/webadmin-cassandra/src/main/java/org/apache/james/webadmin/routes/RecomputeMailboxCountersRequestToTask.java new file mode 100644 index 0000000..2ec6679 --- /dev/null +++ b/server/protocols/webadmin/webadmin-cassandra/src/main/java/org/apache/james/webadmin/routes/RecomputeMailboxCountersRequestToTask.java @@ -0,0 +1,37 @@ +/**************************************************************** + * Licensed to the Apache Software Foundation (ASF) under one * + * or more contributor license agreements. See the NOTICE file * + * distributed with this work for additional information * + * regarding copyright ownership. The ASF licenses this file * + * to you under the Apache License, Version 2.0 (the * + * "License"); you may not use this file except in compliance * + * with the License. You may obtain a copy of the License at * + * * + * http://www.apache.org/licenses/LICENSE-2.0 * + * * + * Unless required by applicable law or agreed to in writing, * + * software distributed under the License is distributed on an * + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * + * KIND, either express or implied. See the License for the * + * specific language governing permissions and limitations * + * under the License. * + ****************************************************************/ + +package org.apache.james.webadmin.routes; + +import javax.inject.Inject; + +import org.apache.james.mailbox.cassandra.mail.task.RecomputeMailboxCountersService; +import org.apache.james.mailbox.cassandra.mail.task.RecomputeMailboxCountersTask; +import org.apache.james.webadmin.tasks.TaskFromRequestRegistry; +import org.apache.james.webadmin.tasks.TaskRegistrationKey; + +public class RecomputeMailboxCountersRequestToTask extends TaskFromRequestRegistry.TaskRegistration { + private static final TaskRegistrationKey REGISTRATION_KEY = TaskRegistrationKey.of("RecomputeMailboxCounters"); + + @Inject + public RecomputeMailboxCountersRequestToTask(RecomputeMailboxCountersService service) { + super(REGISTRATION_KEY, + request -> new RecomputeMailboxCountersTask(service)); + } +} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
