MimeMessageAvalonSourcepublic class MimeMessageAvalonSource extends org.apache.james.core.MimeMessageSource 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. * |
Fields Summary |
---|
org.apache.avalon.cornerstone.services.store.StreamRepository | srThe stream repository used by this data source. | String | repositoryNameThe name of the repository | String | keyThe key for the particular stream in the stream repository
to be used by this data source. | private long | size |
Methods Summary |
---|
public java.io.InputStream | getInputStream()
return sr.get(key);
| public long | getMessageSize()
if (size == -1) {
if (sr instanceof org.apache.james.mailrepository.filepair.File_Persistent_Stream_Repository) {
size = ((org.apache.james.mailrepository.filepair.File_Persistent_Stream_Repository) sr).getSize(key);
} else size = super.getMessageSize();
}
return size;
| public java.lang.String | getSourceId()Returns a unique String ID that represents the location from where
this source is loaded. This will be used to identify where the data
is, primarily to avoid situations where this data would get overwritten.
StringBuffer sourceIdBuffer =
new StringBuffer(128)
.append(repositoryName)
.append("/")
.append(key);
return sourceIdBuffer.toString();
|
|