All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mindoo.domino.jna.mime.attachments.IMimeAttachment Maven / Gradle / Ivy

There is a newer version: 0.9.53
Show newest version
package com.mindoo.domino.jna.mime.attachments;

import java.io.IOException;
import java.io.InputStream;

public interface IMimeAttachment {
	
	public String getFileName() throws IOException;
	
	public String getContentType() throws IOException;
	
	public InputStream getInputStream() throws IOException;
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy