Package org.bouncycastle.cms
Interface CMSProcessable
-
- All Known Subinterfaces:
CMSTypedData
- All Known Implementing Classes:
CMSAbsentContent,CMSProcessableByteArray,CMSProcessableFile,PKCS7ProcessableObject
public interface CMSProcessableUse CMSTypedData instead of this. See CMSProcessableFile/ByteArray for defaults.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.ObjectgetContent()voidwrite(java.io.OutputStream out)generic routine to copy out the data we want processed - the OutputStream passed in will do the handling on it's own.
-
-
-
Method Detail
-
write
void write(java.io.OutputStream out) throws java.io.IOException, CMSExceptiongeneric routine to copy out the data we want processed - the OutputStream passed in will do the handling on it's own.Note: this routine may be called multiple times.
- Throws:
java.io.IOExceptionCMSException
-
getContent
java.lang.Object getContent()
-
-