public interface IOutputCheckActivity
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
_rcsid |
Modifier and Type | Method and Description |
---|---|
boolean |
checkDateIndexable(java.util.Date date)
Detect if a document date is acceptable downstream or not.
|
boolean |
checkDocumentIndexable(java.io.File localFile)
Pre-determine whether a document (passed here as a File object) is acceptable downstream.
|
boolean |
checkLengthIndexable(long length)
Pre-determine whether a document's length is acceptable downstream.
|
boolean |
checkMimeTypeIndexable(java.lang.String mimeType)
Detect if a mime type is acceptable downstream or not.
|
boolean |
checkURLIndexable(java.lang.String url)
Pre-determine whether a document's URL is acceptable downstream.
|
static final java.lang.String _rcsid
boolean checkDateIndexable(java.util.Date date) throws ManifoldCFException, ServiceInterruption
date
- is the date of the document.ManifoldCFException
ServiceInterruption
boolean checkMimeTypeIndexable(java.lang.String mimeType) throws ManifoldCFException, ServiceInterruption
mimeType
- is the mime type of the document.ManifoldCFException
ServiceInterruption
boolean checkDocumentIndexable(java.io.File localFile) throws ManifoldCFException, ServiceInterruption
localFile
- is the local file to check.ManifoldCFException
ServiceInterruption
boolean checkLengthIndexable(long length) throws ManifoldCFException, ServiceInterruption
length
- is the length of the document.ManifoldCFException
ServiceInterruption
boolean checkURLIndexable(java.lang.String url) throws ManifoldCFException, ServiceInterruption
url
- is the URL of the document.ManifoldCFException
ServiceInterruption