icij.ftm.Document Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ftm.java Show documentation
Show all versions of ftm.java Show documentation
ICIJ implementation of the Aleph Follow the Money ontology.
The newest version!
package org.icij.ftm;
/**
* Automatically generated interface for FtM model. Do not update this interface.
* @see Document.
*/
public interface Document extends Thing, Analyzable {
String getFileName();
String getTitle();
String getMimeType();
Folder getParent();
String getContentHash();
String getAuthor();
String getGenerator();
String getCrawler();
int getFileSize();
String getExtension();
String getEncoding();
String getBodyText();
String getMessageId();
String getLanguage();
String getTranslatedLanguage();
String getTranslatedText();
String getDate();
String getAuthoredAt();
String getPublishedAt();
Folder getAncestors();
String getProcessingStatus();
String getProcessingError();
String getProcessingAgent();
String getProcessedAt();
}