MAILBOX-307 bind CassandraACLMapper as SINGLETON
Project: http://git-wip-us.apache.org/repos/asf/james-project/repo Commit: http://git-wip-us.apache.org/repos/asf/james-project/commit/4b1552dd Tree: http://git-wip-us.apache.org/repos/asf/james-project/tree/4b1552dd Diff: http://git-wip-us.apache.org/repos/asf/james-project/diff/4b1552dd Branch: refs/heads/master Commit: 4b1552dd80bcd774a7fe3a1b0d8b659e031dc006 Parents: 59d8a6b Author: benwa <[email protected]> Authored: Wed Oct 4 16:38:41 2017 +0700 Committer: benwa <[email protected]> Committed: Fri Oct 6 13:53:28 2017 +0700 ---------------------------------------------------------------------- .../org/apache/james/modules/mailbox/CassandraMailboxModule.java | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/james-project/blob/4b1552dd/server/container/guice/cassandra-guice/src/main/java/org/apache/james/modules/mailbox/CassandraMailboxModule.java ---------------------------------------------------------------------- diff --git a/server/container/guice/cassandra-guice/src/main/java/org/apache/james/modules/mailbox/CassandraMailboxModule.java b/server/container/guice/cassandra-guice/src/main/java/org/apache/james/modules/mailbox/CassandraMailboxModule.java index 19b4c68..220f351 100644 --- a/server/container/guice/cassandra-guice/src/main/java/org/apache/james/modules/mailbox/CassandraMailboxModule.java +++ b/server/container/guice/cassandra-guice/src/main/java/org/apache/james/modules/mailbox/CassandraMailboxModule.java @@ -34,6 +34,7 @@ import org.apache.james.mailbox.cassandra.CassandraMailboxSessionMapperFactory; import org.apache.james.mailbox.cassandra.CassandraSubscriptionManager; import org.apache.james.mailbox.cassandra.ids.CassandraId; import org.apache.james.mailbox.cassandra.ids.CassandraMessageId; +import org.apache.james.mailbox.cassandra.mail.CassandraACLMapper; import org.apache.james.mailbox.cassandra.mail.CassandraAttachmentDAO; import org.apache.james.mailbox.cassandra.mail.CassandraAttachmentDAOV2; import org.apache.james.mailbox.cassandra.mail.CassandraAttachmentMessageIdDAO; @@ -104,6 +105,7 @@ public class CassandraMailboxModule extends AbstractModule { bind(CassandraAttachmentMessageIdDAO.class).in(Scopes.SINGLETON); bind(CassandraAttachmentDAOV2.class).in(Scopes.SINGLETON); bind(CassandraUserMailboxRightsDAO.class).in(Scopes.SINGLETON); + bind(CassandraACLMapper.class).in(Scopes.SINGLETON); bind(StoreBlobManager.class).in(Scopes.SINGLETON); bind(BlobManager.class).to(StoreBlobManager.class); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
