blob: 4a743ecf4166fa548b956e79f57373ef8c56366d [file] [log] [blame]
/****************************************************************
* 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.store.mail.model;
import java.io.IOException;
import java.io.InputStream;
import java.util.Date;
import java.util.List;
import java.util.Optional;
import jakarta.mail.Flags;
import org.apache.james.mailbox.model.MessageAttachmentMetadata;
import org.apache.james.mailbox.model.MessageId;
import org.apache.james.mailbox.model.ThreadId;
import org.apache.james.mailbox.store.mail.model.impl.Properties;
public abstract class DelegatingMailboxMessage implements MailboxMessage {
private final Message message;
protected DelegatingMailboxMessage(Message message) {
this.message = message;
}
@Override
public final Flags createFlags() {
return FlagsFactory.createFlags(this, createUserFlags());
}
/**
* Return all stored user flags or null if none are stored. By default this return null as no user flags are stored
* permanent. This method SHOULD get overridden, If the implementation supports to store user flags.
*
* @return userFlags
*/
protected String[] createUserFlags() {
return null;
}
@Override
public long getBodyOctets() {
return message.getBodyOctets();
}
@Override
public long getFullContentOctets() {
return message.getFullContentOctets();
}
@Override
public Long getTextualLineCount() {
return message.getTextualLineCount();
}
@Override
public InputStream getHeaderContent() throws IOException {
return message.getHeaderContent();
}
@Override
public InputStream getFullContent() throws IOException {
return message.getFullContent();
}
@Override
public Properties getProperties() {
return message.getProperties();
}
@Override
public Date getInternalDate() {
return message.getInternalDate();
}
@Override
public InputStream getBodyContent() throws IOException {
return message.getBodyContent();
}
@Override
public long getHeaderOctets() {
return message.getHeaderOctets();
}
@Override
public String getMediaType() {
return message.getMediaType();
}
@Override
public String getSubType() {
return message.getSubType();
}
@Override
public MessageId getMessageId() {
return message.getMessageId();
}
@Override
public ThreadId getThreadId() {
return new ThreadId(message.getMessageId());
}
public Message getMessage() {
return message;
}
@Override
public List<MessageAttachmentMetadata> getAttachments() {
return message.getAttachments();
}
@Override
public Optional<byte[][]> getFullBytes() {
return message.getFullBytes();
}
@Override
public Optional<byte[][]> getHeadersBytes() {
return message.getHeadersBytes();
}
}