com.mindoo.domino.jna.mime.attachments.IMimeAttachment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of domino-jna Show documentation
Show all versions of domino-jna Show documentation
Java project to access the HCL Domino C API using Java Native Access (JNA)
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;
}