Uses of Interface
org.apache.james.mime4j.storage.Storage
-
Packages that use Storage Package Description org.apache.james.mime4j.samples.dom org.apache.james.mime4j.storage -
-
Uses of Storage in org.apache.james.mime4j.samples.dom
Methods in org.apache.james.mime4j.samples.dom that return Storage Modifier and Type Method Description private static StorageMultipartMessage. storeImage(StorageProvider storageProvider, java.awt.image.BufferedImage image, java.lang.String formatName)Stores the specified image in a Storage object. -
Uses of Storage in org.apache.james.mime4j.storage
Classes in org.apache.james.mime4j.storage that implement Storage Modifier and Type Class Description private static classCipherStorageProvider.CipherStorage(package private) static classMemoryStorageProvider.MemoryStorageclassMultiReferenceStorageA wrapper around anotherStoragethat also maintains a reference counter.private static classTempFileStorageProvider.TempFileStorageprivate static classThresholdStorageProvider.ThresholdStorageFields in org.apache.james.mime4j.storage declared as Storage Modifier and Type Field Description private StorageCipherStorageProvider.CipherStorage. encryptedprivate StorageMultiReferenceStorage. storageprivate StorageThresholdStorageProvider.ThresholdStorage. tailMethods in org.apache.james.mime4j.storage that return Storage Modifier and Type Method Description StorageAbstractStorageProvider. store(java.io.InputStream in)This implementation creates aStorageOutputStreamby callingcreateStorageOutputStream()and copies the content of the given input stream to that output stream.StorageStorageProvider. store(java.io.InputStream in)Stores the contents of the givenInputStream.StorageStorageOutputStream. toStorage()Closes this output stream if it has not already been closed and returns aStorageobject which contains the bytes that have been written to this output stream.protected StorageCipherStorageProvider.CipherStorageOutputStream. toStorage0()protected StorageMemoryStorageProvider.MemoryStorageOutputStream. toStorage0()protected abstract StorageStorageOutputStream. toStorage0()Has to be implemented by a concrete subclass to create aStorageobject from the bytes that have been written to thisStorageOutputStream.protected StorageTempFileStorageProvider.TempFileStorageOutputStream. toStorage0()protected StorageThresholdStorageProvider.ThresholdStorageOutputStream. toStorage0()Methods in org.apache.james.mime4j.storage with parameters of type Storage Modifier and Type Method Description BinaryBodyStorageBodyFactory. binaryBody(Storage storage)Creates aBinaryBodythat holds the content of the givenStorage.TextBodyStorageBodyFactory. textBody(Storage storage)TextBodyStorageBodyFactory. textBody(Storage storage, java.lang.String mimeCharset)Constructors in org.apache.james.mime4j.storage with parameters of type Storage Constructor Description CipherStorage(Storage encrypted, java.lang.String algorithm, javax.crypto.spec.SecretKeySpec skeySpec)MultiReferenceStorage(Storage storage)Creates a newMultiReferenceStorageinstance for the given back-end.ThresholdStorage(byte[] head, int headLen, Storage tail)
-