Uses of Interface
org.apache.james.mime4j.storage.Storage
-
Packages that use Storage Package Description org.apache.james.mime4j.storage -
-
Uses of Storage in org.apache.james.mime4j.storage
Classes in org.apache.james.mime4j.storage that implement Storage Modifier and Type Class Description class
MultiReferenceStorage
A wrapper around anotherStorage
that also maintains a reference counter.Methods in org.apache.james.mime4j.storage that return Storage Modifier and Type Method Description Storage
AbstractStorageProvider. store(InputStream in)
This implementation creates aStorageOutputStream
by callingcreateStorageOutputStream()
and copies the content of the given input stream to that output stream.Storage
StorageProvider. store(InputStream in)
Stores the contents of the givenInputStream
.Storage
StorageOutputStream. toStorage()
Closes this output stream if it has not already been closed and returns aStorage
object which contains the bytes that have been written to this output stream.protected abstract Storage
StorageOutputStream. toStorage0()
Has to be implemented by a concrete subclass to create aStorage
object from the bytes that have been written to thisStorageOutputStream
.Methods in org.apache.james.mime4j.storage with parameters of type Storage Modifier and Type Method Description BinaryBody
StorageBodyFactory. binaryBody(Storage storage)
Creates aBinaryBody
that holds the content of the givenStorage
.TextBody
StorageBodyFactory. textBody(Storage storage)
TextBody
StorageBodyFactory. textBody(Storage storage, String mimeCharset)
Constructors in org.apache.james.mime4j.storage with parameters of type Storage Constructor Description MultiReferenceStorage(Storage storage)
Creates a newMultiReferenceStorage
instance for the given back-end.
-