source: gs3-extensions/atea-nlp-tools/trunk/src/ocr/src/main/java/org/atea/nlptools/ocr/abstractions/objects/IOcrFile.java@ 35733

Last change on this file since 35733 was 35733, checked in by cstephen, 2 years ago

Add OCR servlet

File size: 470 bytes
Line 
1package org.atea.nlptools.ocr.abstractions.objects;
2
3import java.io.File;
4
5/**
6 * Represents a temporary file to be OCR'ed.
7 */
8public interface IOcrFile
9{
10 /**
11 * Gets the unique key of this file.
12 * @return
13 */
14 String getKey();
15
16 /**
17 * Gets the name of the originally submitted file.
18 * @return
19 */
20 String getFileName();
21
22 /**
23 * Gets the temporary disk file to be OCR'ed.
24 * @return
25 */
26 File getTempFile();
27}
Note: See TracBrowser for help on using the repository browser.