Package org.alfresco.service.cmr.email
Interface EmailMessagePart
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
EmailMessagePartImpl,SubethaEmailMessagePart
public interface EmailMessagePart extends Serializable
Interface to process email parts.- Since:
- 2.2
- Author:
- maxim
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InputStreamgetContent()StringgetContentType()StringgetEncoding()StringgetFileName()intgetSize()
-
-
-
Method Detail
-
getSize
int getSize()
- Returns:
- size.
-
getFileName
String getFileName()
- Returns:
- file name.
-
getEncoding
String getEncoding()
- Returns:
- encoding.
-
getContentType
String getContentType()
- Returns:
- content type.
-
getContent
InputStream getContent()
- Returns:
- InputStream reference.
-
-