Coverage Summary for Class: FileProperty (org.kitodo.api.ocr)

Class Class, % Method, % Line, %
FileProperty 0% (0/1) 0% (0/5) 0% (0/5)


 /*
  * (c) Kitodo. Key to digital objects e. V. <contact@kitodo.org>
  *
  * This file is part of the Kitodo project.
  *
  * It is licensed under GNU General Public License version 3 or later.
  *
  * For the full copyright and license information, please read the
  * GPL3-License.txt file that was distributed with this source code.
  */
 
 package org.kitodo.api.ocr;
 
 import java.net.URI;
 
 /**
  * The properties of the input and output files.
  */
 public class FileProperty {
 
     /** The input file path. */
     private URI inputFileUri;
 
     /** The name of the generated file. */
     private String outputFileName;
 
     /**
      * Gets the inputFileUri.
      * 
      * @return The inputFileUri.
      */
     public URI getInputFileUri() {
         return inputFileUri;
     }
 
     /**
      * Sets the inputFileUri.
      * 
      * @param inputFileUri
      *            The inputFileUri.
      */
     public void setInputFileUri(URI inputFileUri) {
         this.inputFileUri = inputFileUri;
     }
 
     /**
      * Gets the outputFileName.
      * 
      * @return The outputFileName.
      */
     public String getOutputFileName() {
         return outputFileName;
     }
 
     /**
      * Sets the outputFileName.
      * 
      * @param outputFileName
      *            The outputFileName.
      */
     public void setOutputFileName(String outputFileName) {
         this.outputFileName = outputFileName;
     }
 }