Skip to content

Commit

Permalink
JAMES-4077 JMAP - SearchSnippet/get method (distributed only)
Browse files Browse the repository at this point in the history
  • Loading branch information
vttranlina committed Oct 22, 2024
1 parent 2464929 commit 9724d38
Show file tree
Hide file tree
Showing 9 changed files with 1,317 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@
import org.apache.james.jmap.method.QuotaChangesMethod;
import org.apache.james.jmap.method.QuotaGetMethod;
import org.apache.james.jmap.method.QuotaQueryMethod;
import org.apache.james.jmap.method.SearchSnippetGetMethod;
import org.apache.james.jmap.method.SystemZoneIdProvider;
import org.apache.james.jmap.method.ThreadChangesMethod;
import org.apache.james.jmap.method.ThreadGetMethod;
Expand Down Expand Up @@ -171,6 +172,7 @@ protected void configure() {
methods.addBinding().to(DelegateSetMethod.class);
methods.addBinding().to(DelegatedAccountSetMethod.class);
methods.addBinding().to(MailboxQueryChangesMethod.class);
methods.addBinding().to(SearchSnippetGetMethod.class);

Multibinder<JMAPRoutes> routes = Multibinder.newSetBinder(binder(), JMAPRoutes.class);
routes.addBinding().to(SessionRoutes.class);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/****************************************************************
* 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.jmap.rfc8621.distributed;

import org.apache.james.jmap.rfc8621.contract.SearchSnippetGetMethodContract;

class DistributedSearchSnippetGetMethodTest extends DistributedBase implements SearchSnippetGetMethodContract {

}
Loading

0 comments on commit 9724d38

Please sign in to comment.