FileDocCategorySizeDatePackage
CMSProcessableBodyPart.javaAPI DocBouncy Castle Crypto API 1.41 (Java 1.5)894Wed Oct 01 10:55:28 BST 2008org.bouncycastle.mail.smime

CMSProcessableBodyPart

public class CMSProcessableBodyPart extends Object implements org.bouncycastle.cms.CMSProcessable
a holding class for a BodyPart to be processed.

Fields Summary
private BodyPart
bodyPart
Constructors Summary
public CMSProcessableBodyPart(BodyPart bodyPart)

        this.bodyPart = bodyPart;
    
Methods Summary
public java.lang.ObjectgetContent()

        return bodyPart;
    
public voidwrite(java.io.OutputStream out)

        try
        {
            bodyPart.writeTo(out);
        }
        catch (MessagingException e)
        {
            throw new CMSException("can't write BodyPart to stream.", e);
        }