annotate src/main/java/de/mpiwg/itgroup/annotations/NS.java @ 70:2b1e6df5e21a

added lgpl_v3 license information.
author casties
date Thu, 06 Mar 2014 15:09:04 +0100
parents f5c0e6df7e88
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
18
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents: 10
diff changeset
1 package de.mpiwg.itgroup.annotations;
4
3599b29c393f store seems to work now :-)
casties
parents:
diff changeset
2
70
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 58
diff changeset
3 /*
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 58
diff changeset
4 * #%L
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 58
diff changeset
5 * AnnotationManager
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 58
diff changeset
6 * %%
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 58
diff changeset
7 * Copyright (C) 2012 - 2014 MPIWG Berlin
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 58
diff changeset
8 * %%
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 58
diff changeset
9 * This program is free software: you can redistribute it and/or modify
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 58
diff changeset
10 * it under the terms of the GNU Lesser General Public License as
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 58
diff changeset
11 * published by the Free Software Foundation, either version 3 of the
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 58
diff changeset
12 * License, or (at your option) any later version.
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 58
diff changeset
13 *
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 58
diff changeset
14 * This program is distributed in the hope that it will be useful,
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 58
diff changeset
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 58
diff changeset
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 58
diff changeset
17 * GNU General Lesser Public License for more details.
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 58
diff changeset
18 *
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 58
diff changeset
19 * You should have received a copy of the GNU General Lesser Public
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 58
diff changeset
20 * License along with this program. If not, see
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 58
diff changeset
21 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 58
diff changeset
22 * #L%
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 58
diff changeset
23 */
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 58
diff changeset
24
4
3599b29c393f store seems to work now :-)
casties
parents:
diff changeset
25 public class NS {
3599b29c393f store seems to work now :-)
casties
parents:
diff changeset
26 public static final String OAC_NS = "http://www.openannotation.org/ns/";
3599b29c393f store seems to work now :-)
casties
parents:
diff changeset
27 public static final String CNT_NS = "http://www.w3.org/2011/content#";
3599b29c393f store seems to work now :-)
casties
parents:
diff changeset
28 public static final String DCTERMS_NS = "http://www.purl.org/dc/terms/";
3599b29c393f store seems to work now :-)
casties
parents:
diff changeset
29 public static final String RDF_NS = "http://www.w3.org/1999/02/22-rdf-syntax-ns#";
3599b29c393f store seems to work now :-)
casties
parents:
diff changeset
30 public static final String MPIWG_ANNOT_NS = "http://ontologies.mpiwg-berlin.mpg.de/annotations/";
3599b29c393f store seems to work now :-)
casties
parents:
diff changeset
31 public static final String MPIWG_ANNOT_URL = "http://entities.mpiwg-berlin.mpg.de/annotations/";
3599b29c393f store seems to work now :-)
casties
parents:
diff changeset
32 public static final String MPIWG_ANNOT_CTX = "file:///annotations2";
3599b29c393f store seems to work now :-)
casties
parents:
diff changeset
33
3599b29c393f store seems to work now :-)
casties
parents:
diff changeset
34 }