Repository: james-project Updated Branches: refs/heads/master 015d9ae43 -> 43a09f93b
JAMES-2400 Introduce QuotaSearch Project: http://git-wip-us.apache.org/repos/asf/james-project/repo Commit: http://git-wip-us.apache.org/repos/asf/james-project/commit/ffb3abca Tree: http://git-wip-us.apache.org/repos/asf/james-project/tree/ffb3abca Diff: http://git-wip-us.apache.org/repos/asf/james-project/diff/ffb3abca Branch: refs/heads/master Commit: ffb3abca4dce7406ee5df12b49aeab25518be3cf Parents: fec172d Author: Antoine Duprat <adup...@linagora.com> Authored: Fri May 18 12:51:03 2018 +0200 Committer: Matthieu Baechler <matth...@apache.org> Committed: Tue May 22 14:53:25 2018 +0200 ---------------------------------------------------------------------- .../james/quota/search/QuotaSearcher.java | 27 ++++++++++++++++++++ 1 file changed, 27 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/james-project/blob/ffb3abca/mailbox/plugin/quota-search/src/main/java/org/apache/james/quota/search/QuotaSearcher.java ---------------------------------------------------------------------- diff --git a/mailbox/plugin/quota-search/src/main/java/org/apache/james/quota/search/QuotaSearcher.java b/mailbox/plugin/quota-search/src/main/java/org/apache/james/quota/search/QuotaSearcher.java new file mode 100644 index 0000000..781f62b --- /dev/null +++ b/mailbox/plugin/quota-search/src/main/java/org/apache/james/quota/search/QuotaSearcher.java @@ -0,0 +1,27 @@ +/**************************************************************** + * 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.quota.search; + +import java.util.List; + +import org.apache.james.core.User; + +public interface QuotaSearcher { + List<User> search(QuotaQuery query); +} --------------------------------------------------------------------- To unsubscribe, e-mail: server-dev-unsubscr...@james.apache.org For additional commands, e-mail: server-dev-h...@james.apache.org