Skip to contentMethod: QMappedSuperclass()
1: /**
2: * Copyright (C) 2022 Czech Technical University in Prague
3: *
4: * This program is free software: you can redistribute it and/or modify it under
5: * the terms of the GNU General Public License as published by the Free Software
6: * Foundation, either version 3 of the License, or (at your option) any
7: * later version.
8: *
9: * This program is distributed in the hope that it will be useful, but WITHOUT
10: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11: * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
12: * details. You should have received a copy of the GNU General Public License
13: * along with this program. If not, see <http://www.gnu.org/licenses/>.
14: */
15: package cz.cvut.kbss.jopa.test;
16:
17: import cz.cvut.kbss.jopa.model.annotations.*;
18: import cz.cvut.kbss.jopa.vocabulary.RDFS;
19:
20: import java.net.URI;
21:
22: @MappedSuperclass
23: class QMappedSuperclass implements HasUri {
24:
25: @Id(generated = true)
26: private URI uri;
27:
28: @OWLAnnotationProperty(iri = RDFS.LABEL)
29: private String label;
30:
31: @OWLDataProperty(iri = Vocabulary.P_Q_PARENT_STRING_ATTRIBUTE)
32: private String parentString;
33:
34: @ParticipationConstraints(nonEmpty = true)
35: @OWLObjectProperty(iri = Vocabulary.P_HAS_OWL_CLASS_A, fetch = FetchType.EAGER)
36: private OWLClassA owlClassA;
37:
38: @Override
39: public URI getUri() {
40: return uri;
41: }
42:
43: public void setUri(URI uri) {
44: this.uri = uri;
45: }
46:
47: public String getLabel() {
48: return label;
49: }
50:
51: public void setLabel(String label) {
52: this.label = label;
53: }
54:
55: public String getParentString() {
56: return parentString;
57: }
58:
59: public void setParentString(String parentString) {
60: this.parentString = parentString;
61: }
62:
63: public OWLClassA getOwlClassA() {
64: return owlClassA;
65: }
66:
67: public void setOwlClassA(OWLClassA owlClassA) {
68: this.owlClassA = owlClassA;
69: }
70:
71: @Override
72: public String toString() {
73: return "QMappedSuperclass{" +
74: "uri=" + uri +
75: ", label='" + label + '\'' +
76: ", parentString='" + parentString + '\'' +
77: ", owlClassA=" + owlClassA +
78: '}';
79: }
80: }