changeset 70:2b1e6df5e21a

added lgpl_v3 license information.
author casties
date Thu, 06 Mar 2014 15:09:04 +0100
parents 9d3885d1681e
children 326369d4bc4d
files pom.xml src/main/java/de/mpiwg/itgroup/annotations/Actor.java src/main/java/de/mpiwg/itgroup/annotations/Annotation.java src/main/java/de/mpiwg/itgroup/annotations/Group.java src/main/java/de/mpiwg/itgroup/annotations/NS.java src/main/java/de/mpiwg/itgroup/annotations/Person.java src/main/java/de/mpiwg/itgroup/annotations/Resource.java src/main/java/de/mpiwg/itgroup/annotations/Tag.java src/main/java/de/mpiwg/itgroup/annotations/Target.java src/main/java/de/mpiwg/itgroup/annotations/Uri.java src/main/java/de/mpiwg/itgroup/annotations/neo4j/AnnotationStore.java src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorAnnotations.java src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorAnnotationsByResources.java src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorAnnotationsByTags.java src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorGroups.java src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorInfo.java src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorResourceImpl.java src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorResources.java src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorRestlet.java src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorSearch.java src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorTags.java src/main/java/de/mpiwg/itgroup/annotations/restlet/BaseRestlet.java src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/AnnotationResource.java src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/AnnotationsResource.java src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/AnnotationsUiRestlet.java src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/GroupMembersResource.java src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/GroupResource.java src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/GroupsResource.java src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/InfoResource.java src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/PersonResource.java src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/PersonsResource.java src/main/java/de/mpiwg/itgroup/annotations/restlet/utils/JSONObjectComparator.java
diffstat 32 files changed, 814 insertions(+), 115 deletions(-) [+]
line wrap: on
line diff
--- a/pom.xml	Sat Feb 22 07:25:58 2014 -0800
+++ b/pom.xml	Thu Mar 06 15:09:04 2014 +0100
@@ -1,116 +1,131 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-	<modelVersion>4.0.0</modelVersion>
-	<groupId>de.mpiwg.itgroup.annotations</groupId>
-	<artifactId>AnnotationManagerN4J</artifactId>
-	<version>0.3-SNAPSHOT</version>
-	<properties>
-		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-		<neo4j-version>2.0.1</neo4j-version>
-        <restlet-version>2.0.15</restlet-version>
-        <!-- <restlet-version>2.1.7</restlet-version> -->
-	</properties>
-	<repositories>
-		<repository>
-			<id>neo4j-release-repository</id>
-			<name>Neo4j Maven 2 release repository</name>
-			<url>http://m2.neo4j.org/releases</url>
-			<releases>
-				<enabled>true</enabled>
-			</releases>
-			<snapshots>
-				<enabled>false</enabled>
-			</snapshots>
-		</repository>
-		<repository>
-			<id>maven-restlet</id>
-			<name>Public online Restlet repository</name>
-			<url>http://maven.restlet.org</url>
-		</repository>
-	</repositories>
-	<dependencies>
-		<dependency>
-			<groupId>org.neo4j</groupId>
-			<artifactId>neo4j</artifactId>
-			<version>${neo4j-version}</version>
-		</dependency>
-		<dependency>
-			<groupId>org.neo4j.app</groupId>
-			<artifactId>neo4j-server</artifactId>
-			<version>${neo4j-version}</version>
-		</dependency>
-		<dependency>
-			<groupId>org.neo4j.app</groupId>
-			<artifactId>neo4j-server</artifactId>
-			<classifier>static-web</classifier>
-			<version>${neo4j-version}</version>
-		</dependency>
-		<dependency>
-			<groupId>org.restlet.jee</groupId>
-			<artifactId>org.restlet</artifactId>
-			<version>${restlet-version}</version>
-		</dependency>
-		<dependency>
-			<groupId>org.restlet.jee</groupId>
-			<artifactId>org.restlet.ext.servlet</artifactId>
-			<version>${restlet-version}</version>
-		</dependency>
-		<dependency>
-			<groupId>org.restlet.jee</groupId>
-			<artifactId>org.restlet.ext.json</artifactId>
-			<version>${restlet-version}</version>
-		</dependency>
-		<dependency>
-			<groupId>com.googlecode.jsontoken</groupId>
-			<artifactId>jsontoken</artifactId>
-			<version>1.1-SNAPSHOT</version>
-			<exclusions>
-				<exclusion>
-					<artifactId>servlet-api</artifactId>
-					<groupId>javax.servlet</groupId>
-				</exclusion>
-			</exclusions>
-		</dependency>
-		<dependency>
-			<groupId>log4j</groupId>
-			<artifactId>log4j</artifactId>
-			<version>1.2.14</version>
-		</dependency>
-		<dependency>
-			<groupId>commons-codec</groupId>
-			<artifactId>commons-codec</artifactId>
-			<version>1.4</version>
-		</dependency>
-		<dependency>
-			<groupId>org.restlet.jee</groupId>
-			<artifactId>org.restlet.lib.org.json</artifactId>
-			<version>2.0</version>
-		</dependency>
-	</dependencies>
-	<build>
-		<finalName>AnnotationManager</finalName>
-		<pluginManagement>
-			<plugins>
-				<plugin>
-					<groupId>org.apache.maven.plugins</groupId>
-					<artifactId>maven-compiler-plugin</artifactId>
-					<configuration>
-						<source>1.7</source>
-						<target>1.7</target>
-					</configuration>
-				</plugin>
-			</plugins>
-		</pluginManagement>
-	</build>
-	<packaging>war</packaging>
-	<name>AnnotationManager</name>
-	<organization>
-		<name>MPIWG IT Group</name>
-		<url>http://itgroup.mpiwg-berlin.mpg.de</url>
-	</organization>
-	<scm>
-		<connection>scm:hg:https://it-dev.mpiwg-berlin.mpg.de/hg/AnnotationManagerN4J</connection>
-		<url>https://it-dev.mpiwg-berlin.mpg.de/hg/AnnotationManagerN4J</url>
-		<developerConnection>scm:hg:https://it-dev.mpiwg-berlin.mpg.de/hg/AnnotationManagerN4J</developerConnection>
-	</scm>
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>de.mpiwg.itgroup.annotations</groupId>
+  <artifactId>AnnotationManagerN4J</artifactId>
+  <version>0.3-SNAPSHOT</version>
+  <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <neo4j-version>2.0.1</neo4j-version>
+    <restlet-version>2.0.15</restlet-version>
+    <!-- <restlet-version>2.1.7</restlet-version> -->
+  </properties>
+  <repositories>
+    <repository>
+      <id>neo4j-release-repository</id>
+      <name>Neo4j Maven 2 release repository</name>
+      <url>http://m2.neo4j.org/releases</url>
+      <releases>
+        <enabled>true</enabled>
+      </releases>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+    </repository>
+    <repository>
+      <id>maven-restlet</id>
+      <name>Public online Restlet repository</name>
+      <url>http://maven.restlet.org</url>
+    </repository>
+  </repositories>
+  <dependencies>
+    <dependency>
+      <groupId>org.neo4j</groupId>
+      <artifactId>neo4j</artifactId>
+      <version>${neo4j-version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.neo4j.app</groupId>
+      <artifactId>neo4j-server</artifactId>
+      <version>${neo4j-version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.neo4j.app</groupId>
+      <artifactId>neo4j-server</artifactId>
+      <classifier>static-web</classifier>
+      <version>${neo4j-version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.restlet.jee</groupId>
+      <artifactId>org.restlet</artifactId>
+      <version>${restlet-version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.restlet.jee</groupId>
+      <artifactId>org.restlet.ext.servlet</artifactId>
+      <version>${restlet-version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.restlet.jee</groupId>
+      <artifactId>org.restlet.ext.json</artifactId>
+      <version>${restlet-version}</version>
+    </dependency>
+    <dependency>
+      <groupId>com.googlecode.jsontoken</groupId>
+      <artifactId>jsontoken</artifactId>
+      <version>1.1-SNAPSHOT</version>
+      <exclusions>
+        <exclusion>
+          <artifactId>servlet-api</artifactId>
+          <groupId>javax.servlet</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+      <version>1.2.14</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+      <version>1.4</version>
+    </dependency>
+    <dependency>
+      <groupId>org.restlet.jee</groupId>
+      <artifactId>org.restlet.lib.org.json</artifactId>
+      <version>2.0</version>
+    </dependency>
+  </dependencies>
+  <build>
+    <finalName>AnnotationManager</finalName>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-compiler-plugin</artifactId>
+          <configuration>
+            <source>1.7</source>
+            <target>1.7</target>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+    <plugins>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>license-maven-plugin</artifactId>
+        <version>1.4</version>
+        <configuration>
+          <!-- <verbose>false</verbose> -->
+          <licenseName>lgpl_v3</licenseName>
+          <roots>
+            <root>src/main/java</root>
+          </roots>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  <packaging>war</packaging>
+  <name>AnnotationManager</name>
+  <organization>
+    <name>IT-Group, MPIWG Berlin</name>
+    <url>http://itgroup.mpiwg-berlin.mpg.de</url>
+  </organization>
+  <scm>
+    <connection>scm:hg:https://it-dev.mpiwg-berlin.mpg.de/hg/AnnotationManagerN4J</connection>
+    <url>https://it-dev.mpiwg-berlin.mpg.de/hg/AnnotationManagerN4J</url>
+    <developerConnection>scm:hg:https://it-dev.mpiwg-berlin.mpg.de/hg/AnnotationManagerN4J</developerConnection>
+  </scm>
+  <inceptionYear>2012</inceptionYear>
 </project>
\ No newline at end of file
--- a/src/main/java/de/mpiwg/itgroup/annotations/Actor.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/Actor.java	Thu Mar 06 15:09:04 2014 +0100
@@ -3,6 +3,28 @@
  */
 package de.mpiwg.itgroup.annotations;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
+
 import de.mpiwg.itgroup.annotations.neo4j.AnnotationStore;
 import de.mpiwg.itgroup.annotations.restlet.BaseRestlet;
 
--- a/src/main/java/de/mpiwg/itgroup/annotations/Annotation.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/Annotation.java	Thu Mar 06 15:09:04 2014 +0100
@@ -3,6 +3,28 @@
  */
 package de.mpiwg.itgroup.annotations;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
+
 import java.io.UnsupportedEncodingException;
 import java.util.Set;
 
--- a/src/main/java/de/mpiwg/itgroup/annotations/Group.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/Group.java	Thu Mar 06 15:09:04 2014 +0100
@@ -3,6 +3,28 @@
  */
 package de.mpiwg.itgroup.annotations;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
+
 /**
  * @author casties
  *
--- a/src/main/java/de/mpiwg/itgroup/annotations/NS.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/NS.java	Thu Mar 06 15:09:04 2014 +0100
@@ -1,5 +1,27 @@
 package de.mpiwg.itgroup.annotations;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
+
 public class NS {
     public static final String OAC_NS = "http://www.openannotation.org/ns/";
     public static final String CNT_NS = "http://www.w3.org/2011/content#";
--- a/src/main/java/de/mpiwg/itgroup/annotations/Person.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/Person.java	Thu Mar 06 15:09:04 2014 +0100
@@ -3,6 +3,28 @@
  */
 package de.mpiwg.itgroup.annotations;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
+
 import de.mpiwg.itgroup.annotations.restlet.BaseRestlet;
 
 /**
--- a/src/main/java/de/mpiwg/itgroup/annotations/Resource.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/Resource.java	Thu Mar 06 15:09:04 2014 +0100
@@ -3,6 +3,28 @@
  */
 package de.mpiwg.itgroup.annotations;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
+
 /**
  * @author casties
  *
--- a/src/main/java/de/mpiwg/itgroup/annotations/Tag.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/Tag.java	Thu Mar 06 15:09:04 2014 +0100
@@ -1,5 +1,27 @@
 package de.mpiwg.itgroup.annotations;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
+
 import de.mpiwg.itgroup.annotations.restlet.BaseRestlet;
 
 /**
--- a/src/main/java/de/mpiwg/itgroup/annotations/Target.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/Target.java	Thu Mar 06 15:09:04 2014 +0100
@@ -3,6 +3,28 @@
  */
 package de.mpiwg.itgroup.annotations;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
+
 /**
  * @author casties
  *
--- a/src/main/java/de/mpiwg/itgroup/annotations/Uri.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/Uri.java	Thu Mar 06 15:09:04 2014 +0100
@@ -1,5 +1,27 @@
 package de.mpiwg.itgroup.annotations;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
+
 /**
  * @author casties
  * 
--- a/src/main/java/de/mpiwg/itgroup/annotations/neo4j/AnnotationStore.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/neo4j/AnnotationStore.java	Thu Mar 06 15:09:04 2014 +0100
@@ -3,6 +3,29 @@
  */
 package de.mpiwg.itgroup.annotations.neo4j;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ * Author: Robert Casties (casties@mpiwg-berlin.mpg.de)
+ */
+
 import java.util.ArrayList;
 import java.util.Arrays;
 import java.util.Calendar;
--- a/src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorAnnotations.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorAnnotations.java	Thu Mar 06 15:09:04 2014 +0100
@@ -4,6 +4,28 @@
  */
 package de.mpiwg.itgroup.annotations.restlet;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
+
 import java.io.IOException;
 import java.io.UnsupportedEncodingException;
 import java.net.URLDecoder;
--- a/src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorAnnotationsByResources.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorAnnotationsByResources.java	Thu Mar 06 15:09:04 2014 +0100
@@ -1,5 +1,27 @@
 package de.mpiwg.itgroup.annotations.restlet;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
+
 import java.io.UnsupportedEncodingException;
 import java.net.URLDecoder;
 import java.util.ArrayList;
--- a/src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorAnnotationsByTags.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorAnnotationsByTags.java	Thu Mar 06 15:09:04 2014 +0100
@@ -1,5 +1,27 @@
 package de.mpiwg.itgroup.annotations.restlet;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
+
 import java.io.UnsupportedEncodingException;
 import java.net.URLDecoder;
 import java.util.ArrayList;
--- a/src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorGroups.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorGroups.java	Thu Mar 06 15:09:04 2014 +0100
@@ -3,6 +3,28 @@
  */
 package de.mpiwg.itgroup.annotations.restlet;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
+
 import java.util.List;
 
 import org.json.JSONArray;
--- a/src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorInfo.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorInfo.java	Thu Mar 06 15:09:04 2014 +0100
@@ -1,5 +1,27 @@
 package de.mpiwg.itgroup.annotations.restlet;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
+
 import java.io.InputStream;
 
 import org.restlet.data.MediaType;
--- a/src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorResourceImpl.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorResourceImpl.java	Thu Mar 06 15:09:04 2014 +0100
@@ -3,6 +3,28 @@
  */
 package de.mpiwg.itgroup.annotations.restlet;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
+
 import java.io.UnsupportedEncodingException;
 import java.security.InvalidKeyException;
 import java.security.SignatureException;
--- a/src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorResources.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorResources.java	Thu Mar 06 15:09:04 2014 +0100
@@ -3,6 +3,28 @@
  */
 package de.mpiwg.itgroup.annotations.restlet;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
+
 import java.io.UnsupportedEncodingException;
 import java.net.URLDecoder;
 import java.util.List;
--- a/src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorRestlet.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorRestlet.java	Thu Mar 06 15:09:04 2014 +0100
@@ -3,6 +3,28 @@
  */
 package de.mpiwg.itgroup.annotations.restlet;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
+
 import org.apache.log4j.Logger;
 import org.restlet.Context;
 import org.restlet.Restlet;
--- a/src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorSearch.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorSearch.java	Thu Mar 06 15:09:04 2014 +0100
@@ -3,6 +3,28 @@
  */
 package de.mpiwg.itgroup.annotations.restlet;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
+
 import java.util.ArrayList;
 import java.util.List;
 
--- a/src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorTags.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorTags.java	Thu Mar 06 15:09:04 2014 +0100
@@ -3,6 +3,28 @@
  */
 package de.mpiwg.itgroup.annotations.restlet;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
+
 import java.io.UnsupportedEncodingException;
 import java.net.URLDecoder;
 import java.util.List;
--- a/src/main/java/de/mpiwg/itgroup/annotations/restlet/BaseRestlet.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/restlet/BaseRestlet.java	Thu Mar 06 15:09:04 2014 +0100
@@ -1,5 +1,28 @@
 package de.mpiwg.itgroup.annotations.restlet;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ * Author: Robert Casties (casties@mpiwg-berlin.mpg.de)
+ */
+
 import java.io.File;
 import java.io.FileInputStream;
 import java.io.FileNotFoundException;
@@ -23,7 +46,6 @@
 import org.neo4j.graphdb.factory.GraphDatabaseBuilder;
 import org.neo4j.graphdb.factory.GraphDatabaseFactory;
 import org.neo4j.graphdb.factory.GraphDatabaseSettings;
-import org.neo4j.kernel.AbstractGraphDatabase;
 import org.neo4j.kernel.GraphDatabaseAPI;
 import org.neo4j.server.WrappingNeoServerBootstrapper;
 import org.restlet.Application;
--- a/src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/AnnotationResource.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/AnnotationResource.java	Thu Mar 06 15:09:04 2014 +0100
@@ -3,6 +3,28 @@
  */
 package de.mpiwg.itgroup.annotations.restlet.annotations_ui;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
+
 import java.io.UnsupportedEncodingException;
 import java.net.URLDecoder;
 
--- a/src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/AnnotationsResource.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/AnnotationsResource.java	Thu Mar 06 15:09:04 2014 +0100
@@ -3,6 +3,28 @@
  */
 package de.mpiwg.itgroup.annotations.restlet.annotations_ui;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
+
 import java.util.List;
 
 import org.apache.log4j.Logger;
--- a/src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/AnnotationsUiRestlet.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/AnnotationsUiRestlet.java	Thu Mar 06 15:09:04 2014 +0100
@@ -3,6 +3,28 @@
  */
 package de.mpiwg.itgroup.annotations.restlet.annotations_ui;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
+
 import org.apache.log4j.Logger;
 import org.restlet.Context;
 import org.restlet.Restlet;
--- a/src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/GroupMembersResource.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/GroupMembersResource.java	Thu Mar 06 15:09:04 2014 +0100
@@ -3,6 +3,28 @@
  */
 package de.mpiwg.itgroup.annotations.restlet.annotations_ui;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
+
 import java.util.List;
 
 import org.restlet.data.Form;
--- a/src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/GroupResource.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/GroupResource.java	Thu Mar 06 15:09:04 2014 +0100
@@ -3,6 +3,28 @@
  */
 package de.mpiwg.itgroup.annotations.restlet.annotations_ui;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
+
 import java.io.UnsupportedEncodingException;
 import java.net.URLDecoder;
 
--- a/src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/GroupsResource.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/GroupsResource.java	Thu Mar 06 15:09:04 2014 +0100
@@ -3,6 +3,28 @@
  */
 package de.mpiwg.itgroup.annotations.restlet.annotations_ui;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
+
 import java.util.List;
 
 import org.apache.log4j.Logger;
--- a/src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/InfoResource.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/InfoResource.java	Thu Mar 06 15:09:04 2014 +0100
@@ -1,5 +1,27 @@
 package de.mpiwg.itgroup.annotations.restlet.annotations_ui;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
+
 import java.io.InputStream;
 
 import org.restlet.data.MediaType;
--- a/src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/PersonResource.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/PersonResource.java	Thu Mar 06 15:09:04 2014 +0100
@@ -3,6 +3,28 @@
  */
 package de.mpiwg.itgroup.annotations.restlet.annotations_ui;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
+
 import java.io.UnsupportedEncodingException;
 import java.net.URLDecoder;
 
--- a/src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/PersonsResource.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/PersonsResource.java	Thu Mar 06 15:09:04 2014 +0100
@@ -3,6 +3,28 @@
  */
 package de.mpiwg.itgroup.annotations.restlet.annotations_ui;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
+
 import java.util.List;
 
 import org.apache.log4j.Logger;
--- a/src/main/java/de/mpiwg/itgroup/annotations/restlet/utils/JSONObjectComparator.java	Sat Feb 22 07:25:58 2014 -0800
+++ b/src/main/java/de/mpiwg/itgroup/annotations/restlet/utils/JSONObjectComparator.java	Thu Mar 06 15:09:04 2014 +0100
@@ -1,5 +1,28 @@
 package de.mpiwg.itgroup.annotations.restlet.utils;
 
+/*
+ * #%L
+ * AnnotationManager
+ * %%
+ * Copyright (C) 2012 - 2014 MPIWG Berlin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as 
+ * published by the Free Software Foundation, either version 3 of the 
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Lesser Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Lesser Public 
+ * License along with this program.  If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ * Author: Dirk Wintergruen (dwinter@mpiwg-berlin.mpg.de)
+ */
+
 import java.util.Comparator;
 import java.util.List;