org.apache.james.mailbox.jpa.openjpa.OpenJPAMailboxManager Maven / Gradle / Ivy
The newest version!
/****************************************************************
* 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.mailbox.jpa.openjpa;
import java.time.Clock;
import java.util.EnumSet;
import javax.inject.Inject;
import org.apache.james.events.EventBus;
import org.apache.james.mailbox.MailboxSession;
import org.apache.james.mailbox.SessionProvider;
import org.apache.james.mailbox.jpa.JPAMailboxSessionMapperFactory;
import org.apache.james.mailbox.model.Mailbox;
import org.apache.james.mailbox.model.MessageId;
import org.apache.james.mailbox.store.JVMMailboxPathLocker;
import org.apache.james.mailbox.store.MailboxManagerConfiguration;
import org.apache.james.mailbox.store.PreDeletionHooks;
import org.apache.james.mailbox.store.StoreMailboxAnnotationManager;
import org.apache.james.mailbox.store.StoreMailboxManager;
import org.apache.james.mailbox.store.StoreMessageManager;
import org.apache.james.mailbox.store.StoreRightManager;
import org.apache.james.mailbox.store.mail.ThreadIdGuessingAlgorithm;
import org.apache.james.mailbox.store.mail.model.impl.MessageParser;
import org.apache.james.mailbox.store.quota.QuotaComponents;
import org.apache.james.mailbox.store.search.MessageSearchIndex;
/**
* OpenJPA implementation of MailboxManager
*
*/
public class OpenJPAMailboxManager extends StoreMailboxManager {
public static final EnumSet MAILBOX_CAPABILITIES = EnumSet.of(MailboxCapabilities.UserFlag,
MailboxCapabilities.Namespace,
MailboxCapabilities.Move,
MailboxCapabilities.Annotation);
@Inject
public OpenJPAMailboxManager(JPAMailboxSessionMapperFactory mapperFactory,
SessionProvider sessionProvider,
MessageParser messageParser,
MessageId.Factory messageIdFactory,
EventBus eventBus,
StoreMailboxAnnotationManager annotationManager,
StoreRightManager storeRightManager,
QuotaComponents quotaComponents,
MessageSearchIndex index,
ThreadIdGuessingAlgorithm threadIdGuessingAlgorithm,
Clock clock) {
super(mapperFactory, sessionProvider, new JVMMailboxPathLocker(),
messageParser, messageIdFactory, annotationManager,
eventBus, storeRightManager, quotaComponents,
index, MailboxManagerConfiguration.DEFAULT, PreDeletionHooks.NO_PRE_DELETION_HOOK, threadIdGuessingAlgorithm, clock);
}
@Override
protected StoreMessageManager createMessageManager(Mailbox mailboxRow, MailboxSession session) {
return new OpenJPAMessageManager(getMapperFactory(),
getMessageSearchIndex(),
getEventBus(),
getLocker(),
mailboxRow,
getQuotaComponents().getQuotaManager(),
getQuotaComponents().getQuotaRootResolver(),
getMessageIdFactory(),
configuration.getBatchSizes(),
getStoreRightManager(),
getThreadIdGuessingAlgorithm(),
getClock());
}
@Override
public EnumSet getSupportedMailboxCapabilities() {
return MAILBOX_CAPABILITIES;
}
}