Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/****************************************************************
* 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.io.InputStream;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import javax.mail.Flags;
import org.apache.james.mailbox.MailboxException;
import org.apache.james.mailbox.jpa.JPAMailboxSessionMapperFactory;
import org.apache.james.mailbox.jpa.JPAMessageManager;
import org.apache.james.mailbox.jpa.mail.model.JPAHeader;
import org.apache.james.mailbox.jpa.mail.model.JPAMailbox;
import org.apache.james.mailbox.jpa.mail.model.openjpa.JPAStreamingMessage;
import org.apache.james.mailbox.store.mail.UidProvider;
import org.apache.james.mailbox.store.mail.model.Header;
import org.apache.james.mailbox.store.mail.model.Mailbox;
import org.apache.james.mailbox.store.mail.model.Message;
import org.apache.james.mailbox.store.mail.model.PropertyBuilder;
import org.apache.james.mailbox.util.MailboxEventDispatcher;
/**
* OpenJPA implementation of Mailbox
*/
public class OpenJPAMessageManager extends JPAMessageManager {
private final boolean useStreaming;
public OpenJPAMessageManager(JPAMailboxSessionMapperFactory mapperFactory, UidProvider uidProvider,
MailboxEventDispatcher dispatcher, Mailbox mailbox) throws MailboxException {
this(mapperFactory, uidProvider, dispatcher, mailbox, false);
}
public OpenJPAMessageManager(JPAMailboxSessionMapperFactory mapperFactory, UidProvider uidProvider,
MailboxEventDispatcher dispatcher, Mailbox mailbox, final boolean useStreaming) throws MailboxException {
super(mapperFactory, uidProvider, dispatcher, mailbox);
this.useStreaming = useStreaming;
}
@Override
protected Message createMessage(long uid, Date internalDate, int size, int bodyStartOctet, InputStream document, Flags flags, List headers, PropertyBuilder propertyBuilder) throws MailboxException {
if (useStreaming) {
final List jpaHeaders = new ArrayList(headers.size());
for (Header header: headers) {
jpaHeaders.add((JPAHeader) header);
}
return new JPAStreamingMessage((JPAMailbox) getMailboxEntity(), uid, internalDate, size, flags, document, bodyStartOctet, jpaHeaders, propertyBuilder);
} else {
return super.createMessage(uid, internalDate, size, bodyStartOctet, document, flags, headers, propertyBuilder);
}
}
}