Skip to content

Method: PropertiesHandler(OwlapiAdapter, OntologySnapshot)

1: /*
2: * JOPA
3: * Copyright (C) 2024 Czech Technical University in Prague
4: *
5: * This library is free software; you can redistribute it and/or
6: * modify it under the terms of the GNU Lesser General Public
7: * License as published by the Free Software Foundation; either
8: * version 3.0 of the License, or (at your option) any later version.
9: *
10: * This library is distributed in the hope that it will be useful,
11: * but WITHOUT ANY WARRANTY; without even the implied warranty of
12: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13: * Lesser General Public License for more details.
14: *
15: * You should have received a copy of the GNU Lesser General Public
16: * License along with this library.
17: */
18: package cz.cvut.kbss.ontodriver.owlapi;
19:
20: import cz.cvut.kbss.ontodriver.model.Assertion;
21: import cz.cvut.kbss.ontodriver.model.Axiom;
22: import cz.cvut.kbss.ontodriver.model.NamedResource;
23: import cz.cvut.kbss.ontodriver.model.Value;
24: import cz.cvut.kbss.ontodriver.owlapi.connector.OntologySnapshot;
25:
26: import java.util.Collection;
27: import java.util.Map;
28: import java.util.Set;
29:
30: class PropertiesHandler {
31:
32: private final OwlapiAdapter adapter;
33: private final OntologySnapshot snapshot;
34:
35: PropertiesHandler(OwlapiAdapter adapter, OntologySnapshot snapshot) {
36: this.adapter = adapter;
37: this.snapshot = snapshot;
38: }
39:
40: public Collection<Axiom<?>> getProperties(NamedResource subject, boolean includeInferred) {
41: if (includeInferred) {
42: return getPropertiesIncludingInferred(subject);
43: } else {
44: return getExplicitProperties(subject);
45: }
46: }
47:
48: private Collection<Axiom<?>> getPropertiesIncludingInferred(NamedResource subject) {
49: return new InferredAxiomLoader(adapter, snapshot).loadPropertyAxioms(subject);
50: }
51:
52: private Collection<Axiom<?>> getExplicitProperties(NamedResource subject) {
53: return new ExplicitAxiomLoader(adapter, snapshot).loadPropertyAxioms(subject);
54: }
55:
56: public void addProperties(NamedResource subject, Map<Assertion, Set<Value<?>>> properties) {
57: new AxiomSaver(adapter, snapshot).persistAxioms(subject, properties);
58: }
59:
60: public void removeProperties(NamedResource subject, Map<Assertion, Set<Value<?>>> properties) {
61: new EpistemicAxiomRemover(adapter, snapshot).removeAxioms(subject, properties);
62: }
63: }