1 /*
2 * Copyright 2018-2024 Medical Information Systems Research Group (https://medical.zcu.cz),
3 * Department of Computer Science and Engineering, University of West Bohemia.
4 * Address: Univerzitni 8, 306 14 Plzen, Czech Republic.
5 *
6 * Author Petr Vcelak (vcelak@kiv.zcu.cz).
7 *
8 * This file is part of MRE SPARQL QueryBuilder project.
9 *
10 * MRE SPARQL QueryBuilder is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation, either version 3 of the License.
13 *
14 * MRE SPARQL QueryBuilder is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with MRE SPARQL QueryBuilder. If not, see <http://www.gnu.org/licenses/>.
21 */
22 package cz.zcu.mre.vocab;
23
24 /**
25 * Name-space constants.
26 *
27 * @author Petr Vcelak (vcelak@kiv.zcu.cz)
28 * @since 2016-09-25
29 */
30 public final class NS {
31
32 /**
33 * http://www.w3.org/ns/auth/acl#
34 */
35 public static final String ACL = cz.zcu.mre.vocab.ACL.NS;
36 /**
37 * http://www.w3.org/ns/adms#
38 */
39 public static final String ADMS = "http://www.w3.org/ns/adms#";
40 /**
41 * http://www.daml.org/2001/03/daml+oil#
42 */
43 public static final String DAML_OIL = "http://www.daml.org/2001/03/daml+oil#";
44 /**
45 * Alias for DC11.
46 */
47 public static final String DC = org.apache.jena.vocabulary.DC_11.NS;
48 /**
49 * http://purl.org/dc/elements/1.0/
50 */
51 public static final String DC10 = org.apache.jena.vocabulary.DC_10.uri;
52 /**
53 * http://purl.org/dc/elements/1.1/
54 */
55 public static final String DC11 = org.apache.jena.vocabulary.DC_11.NS;
56 /**
57 * http://purl.org/dc/terms/
58 */
59 public static final String DC_TERMS = org.apache.jena.vocabulary.DCTerms.NS;
60 /**
61 * https://mre.zcu.cz/ontology/dicom.owl#
62 */
63 public static final String DCM = cz.zcu.mre.vocab.DCM.NS; // mapping to MRE DICOM Ontology // TODO move to Semantic DICOM
64 /**
65 * http://semantic-dicom.org/dcm#
66 */
67 public static final String DCM_SEDI = "http://semantic-dicom.org/dcm#";
68 /**
69 * http://semantic-dicom.org/dcm-ext#
70 */
71 public static final String DCM_SEDI_EXT = "http://semantic-dicom.org/dcm-ext#";
72 /**
73 * https://mre.zcu.cz/ontology/dscl.owl#
74 */
75 public static final String DSCL = cz.zcu.mre.vocab.DSCL.NS;
76 /**
77 * https://mre.zcu.cz/ontology/dasta.owl#
78 */
79 public static final String DS = cz.zcu.mre.vocab.DS.NS;
80 /**
81 * http://xmlns.com/foaf/0.1/
82 */
83 public static final String FOAF = cz.zcu.mre.vocab.FOAF.NS;
84 /**
85 * https://mre.zcu.cz/ontology/form.owl#
86 */
87 public static final String FORM = cz.zcu.mre.vocab.FORM.NS;
88 /**
89 * http://www.w3.org/2004/09/fresnel#
90 */
91 public static final String FSL = cz.zcu.mre.vocab.FSL.NS;
92 /**
93 * http://purl.org/goodrelations/v1#
94 */
95 public static final String GR = cz.zcu.mre.vocab.GR.NS;
96 /**
97 * https://mre.zcu.cz/ontology/ibd.owl#
98 */
99 public static final String IBDS = cz.zcu.mre.vocab.IBD.NS;
100
101 /**
102 * https://mre.zcu.cz/ontology/ibdt.owl#
103 */
104 public static final String IBDT = cz.zcu.mre.vocab.IBDT.NS;
105 /**
106 * ICD code-list.
107 *
108 * http://purl.bioontology.org/ontology/ICD10/
109 */
110 public static final String ICD10 = "http://purl.bioontology.org/ontology/ICD10/"; // codelist
111 /**
112 * https://mre.zcu.cz/id/
113 */
114 public static final String ID = "https://mre.zcu.cz/id/";
115 /**
116 * https://mre.zcu.cz/ontology/image.owl#
117 */
118 public static final String IM = cz.zcu.mre.vocab.IM.NS;
119 /**
120 * https://mre.zcu.cz/ontology/image-mapping.owl#
121 */
122 public static final String IMM = cz.zcu.mre.vocab.IMM.NS;
123 /**
124 * https://mre.zcu.cz/ontology/mre.owl#
125 */
126 public static final String MRE = cz.zcu.mre.vocab.MRE.NS;
127 /**
128 * http://www.semanticdesktop.org/ontologies/2007/08/15/nao#
129 */
130 public static final String NAO = cz.zcu.mre.vocab.NAO.NS;
131 /**
132 * http://www.semanticdesktop.org/ontologies/2007/03/22/nco#
133 */
134 public static final String NCO = cz.zcu.mre.vocab.NCO.NS;
135 /**
136 * http://www.semanticdesktop.org/ontologies/2007/05/10/nexif#
137 */
138 public static final String NEXIF = cz.zcu.mre.vocab.NEXIF.NS;
139 /**
140 * http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#
141 */
142 public static final String NFO = cz.zcu.mre.vocab.NFO.NS;
143 /**
144 * http://www.semanticdesktop.org/ontologies/2007/01/19/nie#
145 */
146 public static final String NIE = cz.zcu.mre.vocab.NIE.NS;
147 /**
148 * https://mre.zcu.cz/ontology/nihss.owl#
149 */
150 public static final String NIHSS = cz.zcu.mre.vocab.NIHSS.NS;
151 /**
152 * http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#
153 */
154 public static final String NRL = cz.zcu.mre.vocab.NRL.NS;
155 /**
156 * http://creativecommons.org/ns#
157 */
158 public static final String CC = "http://creativecommons.org/ns#";
159 /**
160 * http://www.w3.org/ns/org#
161 */
162 public static final String ORG = cz.zcu.mre.vocab.ORG.NS;
163
164 /**
165 * http://www.w3.org/2002/07/owl#
166 */
167 public static final String OWL = org.apache.jena.vocabulary.OWL.NS;
168 /**
169 * http://www.w3.org/2002/07/owl#
170 */
171 public static final String OWL2 = org.apache.jena.vocabulary.OWL2.NS;
172 /**
173 * https://mre.zcu.cz/ontology/pop.owl#
174 */
175 public static final String POP = cz.zcu.mre.vocab.POP.NS;
176 /**
177 * http://www.w3.org/ns/prov#
178 */
179 public static final String PROV = cz.zcu.mre.vocab.PROV.NS;
180
181 /**
182 * http://www.w3.org/1999/02/22-rdf-syntax-ns#
183 */
184 public static final String RDF = org.apache.jena.vocabulary.RDF.uri;
185 /**
186 * http://www.w3.org/2000/01/rdf-schema#
187 */
188 public static final String RDFS = org.apache.jena.vocabulary.RDFS.uri;
189 /**
190 * http://www.w3.org/ns/sparql-service-description#
191 */
192 public static final String SD = cz.zcu.mre.vocab.SD.NS;
193 /**
194 * https://mre.zcu.cz/ontology/sits.owl#
195 */
196 public static final String SITS = cz.zcu.mre.vocab.SITS.NS;
197 /**
198 * http://www.w3.org/2004/02/skos/core#
199 */
200 public static final String SKOS = org.apache.jena.vocabulary.SKOS.uri;
201 /**
202 * https://mre.zcu.cz/ontology/stroke.owl#
203 */
204 public static final String STROKE = cz.zcu.mre.vocab.STROKE.NS;
205 /**
206 * https://mre.zcu.cz/ontology/tdb.owl#
207 */
208 public static final String TDB = cz.zcu.mre.vocab.TDB.NS;
209 /**
210 * http://www.w3.org/2006/time#
211 */
212 public static final String TIME = cz.zcu.mre.vocab.TIME.NS;
213 /**
214 * http://purl.org/NET/c4dm/timeline.owl#
215 */
216 public static final String TL = cz.zcu.mre.vocab.TL.NS;
217 /**
218 * http://www.w3.org/2006/timezone#
219 */
220 public static final String TZONT = "http://www.w3.org/2006/timezone#";
221 /**
222 * http://purl.org/vocab/vann/
223 */
224 public static final String VANN = cz.zcu.mre.vocab.VANN.NS;
225 /**
226 * http://www.w3.org/2006/vcard/ns#
227 */
228 public static final String VCARD = cz.zcu.mre.vocab.VCARD.NS;
229 /**
230 * http://rdfs.org/ns/void#
231 */
232 public static final String VOID = cz.zcu.mre.vocab.VOID.NS;
233 /**
234 * http://www.w3.org/2003/06/sw-vocab-status/ns#
235 */
236 public static final String VS = cz.zcu.mre.vocab.VS.NS;
237 /**
238 * http://www.w3.org/XML/1998/namespace
239 */
240 public static final String XML = "http://www.w3.org/XML/1998/namespace";
241
242 /**
243 * http://www.w3.org/2001/XMLSchema#
244 */
245 public static final String XSD = org.apache.jena.vocabulary.XSD.NS;
246
247 /**
248 * http://www.w3.org/2005/xpath-functions#
249 */
250 public static final String FN = "http://www.w3.org/2005/xpath-functions#";
251
252 /**
253 * http://www.w3.org/2005/xpath-functions/math#
254 */
255 public static final String MATH = "http://www.w3.org/2005/xpath-functions/math#";
256
257 /**
258 * Private constructor.
259 */
260 private NS() {
261 }
262
263 }