Coverage Summary for Class: ConfigOpacDoctype (de.unigoettingen.sub.search.opac)

Class Class, % Method, % Line, %
ConfigOpacDoctype 100% (1/1) 100% (4/4) 100% (7/7)


 /*
  * (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 de.unigoettingen.sub.search.opac;
 
 public class ConfigOpacDoctype {
     private String title;
     private String rulesetType;
     private String tifHeaderType;
 
     ConfigOpacDoctype(String inTitle, String inRulesetType, String inTifHeaderType) {
 
         this.title = inTitle;
         this.rulesetType = inRulesetType;
         this.tifHeaderType = inTifHeaderType;
     }
 
     public String getTitle() {
         return this.title;
     }
 
     public String getRulesetType() {
         return this.rulesetType;
     }
 
     public String getTifHeaderType() {
         return this.tifHeaderType;
     }
 }