Merge branch 'release/5.8.0'
[cdmlib.git] / cdmlib-io / src / main / java / eu / etaxonomy / cdm / io / descriptive / owl / in / StructureTreeOwlImportState.java
1 /**
2 * Copyright (C) 2019 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9 package eu.etaxonomy.cdm.io.descriptive.owl.in;
10
11 import com.hp.hpl.jena.rdf.model.Model;
12
13 import eu.etaxonomy.cdm.io.common.ImportStateBase;
14 import eu.etaxonomy.cdm.io.descriptive.owl.OwlUtil;
15
16 /**
17 * @author pplitzner
18 * @since Apr 24, 2019
19 *
20 */
21 public class StructureTreeOwlImportState extends ImportStateBase<StructureTreeOwlImportConfigurator, StructureTreeOwlImport> {
22
23 private Model model;
24
25 protected StructureTreeOwlImportState(StructureTreeOwlImportConfigurator config) {
26 super(config);
27 model = OwlUtil.createModel();
28 }
29
30 public Model getModel() {
31 return model;
32 }
33
34 }