1 package org.bouncycastle.cms;
2 
3 import org.bouncycastle.asn1.ASN1ObjectIdentifier;
4 
5 public interface CMSTypedData
6     extends CMSProcessable
7 {
getContentType()8     ASN1ObjectIdentifier getContentType();
9 }
10