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 14d496db5de42e87823ed63784980dad828608ff Author: LanKhuat <[email protected]> AuthorDate: Thu Oct 8 13:39:25 2020 +0700 JAMES-3410 Email/set method binding --- .../main/java/org/apache/james/jmap/rfc8621/RFC8621MethodsModule.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/container/guice/protocols/jmap/src/main/java/org/apache/james/jmap/rfc8621/RFC8621MethodsModule.java b/server/container/guice/protocols/jmap/src/main/java/org/apache/james/jmap/rfc8621/RFC8621MethodsModule.java index 38214f5..535f1d5 100644 --- a/server/container/guice/protocols/jmap/src/main/java/org/apache/james/jmap/rfc8621/RFC8621MethodsModule.java +++ b/server/container/guice/protocols/jmap/src/main/java/org/apache/james/jmap/rfc8621/RFC8621MethodsModule.java @@ -36,6 +36,7 @@ import org.apache.james.jmap.jwt.JWTAuthenticationStrategy; import org.apache.james.jmap.method.CoreEchoMethod; import org.apache.james.jmap.method.EmailGetMethod; import org.apache.james.jmap.method.EmailQueryMethod; +import org.apache.james.jmap.method.EmailSetMethod; import org.apache.james.jmap.method.MailboxGetMethod; import org.apache.james.jmap.method.MailboxQueryMethod; import org.apache.james.jmap.method.MailboxSetMethod; @@ -72,6 +73,7 @@ public class RFC8621MethodsModule extends AbstractModule { methods.addBinding().to(MailboxQueryMethod.class); methods.addBinding().to(MailboxSetMethod.class); methods.addBinding().to(EmailGetMethod.class); + methods.addBinding().to(EmailSetMethod.class); methods.addBinding().to(EmailQueryMethod.class); methods.addBinding().to(VacationResponseGetMethod.class); methods.addBinding().to(VacationResponseSetMethod.class); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
