Changeset 70:2b1e6df5e21a in AnnotationManagerN4J


Ignore:
Timestamp:
Mar 6, 2014, 2:09:04 PM (10 years ago)
Author:
casties
Branch:
default
Message:

added lgpl_v3 license information.

Files:
32 edited

Legend:

Unmodified
Added
Removed
  • pom.xml

    r66 r70  
    11<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    2         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    3         <modelVersion>4.0.0</modelVersion>
    4         <groupId>de.mpiwg.itgroup.annotations</groupId>
    5         <artifactId>AnnotationManagerN4J</artifactId>
    6         <version>0.3-SNAPSHOT</version>
    7         <properties>
    8                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    9                 <neo4j-version>2.0.1</neo4j-version>
    10         <restlet-version>2.0.15</restlet-version>
    11         <!-- <restlet-version>2.1.7</restlet-version> -->
    12         </properties>
    13         <repositories>
    14                 <repository>
    15                         <id>neo4j-release-repository</id>
    16                         <name>Neo4j Maven 2 release repository</name>
    17                         <url>http://m2.neo4j.org/releases</url>
    18                         <releases>
    19                                 <enabled>true</enabled>
    20                         </releases>
    21                         <snapshots>
    22                                 <enabled>false</enabled>
    23                         </snapshots>
    24                 </repository>
    25                 <repository>
    26                         <id>maven-restlet</id>
    27                         <name>Public online Restlet repository</name>
    28                         <url>http://maven.restlet.org</url>
    29                 </repository>
    30         </repositories>
    31         <dependencies>
    32                 <dependency>
    33                         <groupId>org.neo4j</groupId>
    34                         <artifactId>neo4j</artifactId>
    35                         <version>${neo4j-version}</version>
    36                 </dependency>
    37                 <dependency>
    38                         <groupId>org.neo4j.app</groupId>
    39                         <artifactId>neo4j-server</artifactId>
    40                         <version>${neo4j-version}</version>
    41                 </dependency>
    42                 <dependency>
    43                         <groupId>org.neo4j.app</groupId>
    44                         <artifactId>neo4j-server</artifactId>
    45                         <classifier>static-web</classifier>
    46                         <version>${neo4j-version}</version>
    47                 </dependency>
    48                 <dependency>
    49                         <groupId>org.restlet.jee</groupId>
    50                         <artifactId>org.restlet</artifactId>
    51                         <version>${restlet-version}</version>
    52                 </dependency>
    53                 <dependency>
    54                         <groupId>org.restlet.jee</groupId>
    55                         <artifactId>org.restlet.ext.servlet</artifactId>
    56                         <version>${restlet-version}</version>
    57                 </dependency>
    58                 <dependency>
    59                         <groupId>org.restlet.jee</groupId>
    60                         <artifactId>org.restlet.ext.json</artifactId>
    61                         <version>${restlet-version}</version>
    62                 </dependency>
    63                 <dependency>
    64                         <groupId>com.googlecode.jsontoken</groupId>
    65                         <artifactId>jsontoken</artifactId>
    66                         <version>1.1-SNAPSHOT</version>
    67                         <exclusions>
    68                                 <exclusion>
    69                                         <artifactId>servlet-api</artifactId>
    70                                         <groupId>javax.servlet</groupId>
    71                                 </exclusion>
    72                         </exclusions>
    73                 </dependency>
    74                 <dependency>
    75                         <groupId>log4j</groupId>
    76                         <artifactId>log4j</artifactId>
    77                         <version>1.2.14</version>
    78                 </dependency>
    79                 <dependency>
    80                         <groupId>commons-codec</groupId>
    81                         <artifactId>commons-codec</artifactId>
    82                         <version>1.4</version>
    83                 </dependency>
    84                 <dependency>
    85                         <groupId>org.restlet.jee</groupId>
    86                         <artifactId>org.restlet.lib.org.json</artifactId>
    87                         <version>2.0</version>
    88                 </dependency>
    89         </dependencies>
    90         <build>
    91                 <finalName>AnnotationManager</finalName>
    92                 <pluginManagement>
    93                         <plugins>
    94                                 <plugin>
    95                                         <groupId>org.apache.maven.plugins</groupId>
    96                                         <artifactId>maven-compiler-plugin</artifactId>
    97                                         <configuration>
    98                                                 <source>1.7</source>
    99                                                 <target>1.7</target>
    100                                         </configuration>
    101                                 </plugin>
    102                         </plugins>
    103                 </pluginManagement>
    104         </build>
    105         <packaging>war</packaging>
    106         <name>AnnotationManager</name>
    107         <organization>
    108                 <name>MPIWG IT Group</name>
    109                 <url>http://itgroup.mpiwg-berlin.mpg.de</url>
    110         </organization>
    111         <scm>
    112                 <connection>scm:hg:https://it-dev.mpiwg-berlin.mpg.de/hg/AnnotationManagerN4J</connection>
    113                 <url>https://it-dev.mpiwg-berlin.mpg.de/hg/AnnotationManagerN4J</url>
    114                 <developerConnection>scm:hg:https://it-dev.mpiwg-berlin.mpg.de/hg/AnnotationManagerN4J</developerConnection>
    115         </scm>
     2  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     3  <modelVersion>4.0.0</modelVersion>
     4  <groupId>de.mpiwg.itgroup.annotations</groupId>
     5  <artifactId>AnnotationManagerN4J</artifactId>
     6  <version>0.3-SNAPSHOT</version>
     7  <properties>
     8    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     9    <neo4j-version>2.0.1</neo4j-version>
     10    <restlet-version>2.0.15</restlet-version>
     11    <!-- <restlet-version>2.1.7</restlet-version> -->
     12  </properties>
     13  <repositories>
     14    <repository>
     15      <id>neo4j-release-repository</id>
     16      <name>Neo4j Maven 2 release repository</name>
     17      <url>http://m2.neo4j.org/releases</url>
     18      <releases>
     19        <enabled>true</enabled>
     20      </releases>
     21      <snapshots>
     22        <enabled>false</enabled>
     23      </snapshots>
     24    </repository>
     25    <repository>
     26      <id>maven-restlet</id>
     27      <name>Public online Restlet repository</name>
     28      <url>http://maven.restlet.org</url>
     29    </repository>
     30  </repositories>
     31  <dependencies>
     32    <dependency>
     33      <groupId>org.neo4j</groupId>
     34      <artifactId>neo4j</artifactId>
     35      <version>${neo4j-version}</version>
     36    </dependency>
     37    <dependency>
     38      <groupId>org.neo4j.app</groupId>
     39      <artifactId>neo4j-server</artifactId>
     40      <version>${neo4j-version}</version>
     41    </dependency>
     42    <dependency>
     43      <groupId>org.neo4j.app</groupId>
     44      <artifactId>neo4j-server</artifactId>
     45      <classifier>static-web</classifier>
     46      <version>${neo4j-version}</version>
     47    </dependency>
     48    <dependency>
     49      <groupId>org.restlet.jee</groupId>
     50      <artifactId>org.restlet</artifactId>
     51      <version>${restlet-version}</version>
     52    </dependency>
     53    <dependency>
     54      <groupId>org.restlet.jee</groupId>
     55      <artifactId>org.restlet.ext.servlet</artifactId>
     56      <version>${restlet-version}</version>
     57    </dependency>
     58    <dependency>
     59      <groupId>org.restlet.jee</groupId>
     60      <artifactId>org.restlet.ext.json</artifactId>
     61      <version>${restlet-version}</version>
     62    </dependency>
     63    <dependency>
     64      <groupId>com.googlecode.jsontoken</groupId>
     65      <artifactId>jsontoken</artifactId>
     66      <version>1.1-SNAPSHOT</version>
     67      <exclusions>
     68        <exclusion>
     69          <artifactId>servlet-api</artifactId>
     70          <groupId>javax.servlet</groupId>
     71        </exclusion>
     72      </exclusions>
     73    </dependency>
     74    <dependency>
     75      <groupId>log4j</groupId>
     76      <artifactId>log4j</artifactId>
     77      <version>1.2.14</version>
     78    </dependency>
     79    <dependency>
     80      <groupId>commons-codec</groupId>
     81      <artifactId>commons-codec</artifactId>
     82      <version>1.4</version>
     83    </dependency>
     84    <dependency>
     85      <groupId>org.restlet.jee</groupId>
     86      <artifactId>org.restlet.lib.org.json</artifactId>
     87      <version>2.0</version>
     88    </dependency>
     89  </dependencies>
     90  <build>
     91    <finalName>AnnotationManager</finalName>
     92    <pluginManagement>
     93      <plugins>
     94        <plugin>
     95          <groupId>org.apache.maven.plugins</groupId>
     96          <artifactId>maven-compiler-plugin</artifactId>
     97          <configuration>
     98            <source>1.7</source>
     99            <target>1.7</target>
     100          </configuration>
     101        </plugin>
     102      </plugins>
     103    </pluginManagement>
     104    <plugins>
     105      <plugin>
     106        <groupId>org.codehaus.mojo</groupId>
     107        <artifactId>license-maven-plugin</artifactId>
     108        <version>1.4</version>
     109        <configuration>
     110          <!-- <verbose>false</verbose> -->
     111          <licenseName>lgpl_v3</licenseName>
     112          <roots>
     113            <root>src/main/java</root>
     114          </roots>
     115        </configuration>
     116      </plugin>
     117    </plugins>
     118  </build>
     119  <packaging>war</packaging>
     120  <name>AnnotationManager</name>
     121  <organization>
     122    <name>IT-Group, MPIWG Berlin</name>
     123    <url>http://itgroup.mpiwg-berlin.mpg.de</url>
     124  </organization>
     125  <scm>
     126    <connection>scm:hg:https://it-dev.mpiwg-berlin.mpg.de/hg/AnnotationManagerN4J</connection>
     127    <url>https://it-dev.mpiwg-berlin.mpg.de/hg/AnnotationManagerN4J</url>
     128    <developerConnection>scm:hg:https://it-dev.mpiwg-berlin.mpg.de/hg/AnnotationManagerN4J</developerConnection>
     129  </scm>
     130  <inceptionYear>2012</inceptionYear>
    116131</project>
  • src/main/java/de/mpiwg/itgroup/annotations/Actor.java

    r58 r70  
    33 */
    44package de.mpiwg.itgroup.annotations;
     5
     6/*
     7 * #%L
     8 * AnnotationManager
     9 * %%
     10 * Copyright (C) 2012 - 2014 MPIWG Berlin
     11 * %%
     12 * This program is free software: you can redistribute it and/or modify
     13 * it under the terms of the GNU Lesser General Public License as
     14 * published by the Free Software Foundation, either version 3 of the
     15 * License, or (at your option) any later version.
     16 *
     17 * This program is distributed in the hope that it will be useful,
     18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     20 * GNU General Lesser Public License for more details.
     21 *
     22 * You should have received a copy of the GNU General Lesser Public
     23 * License along with this program.  If not, see
     24 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     25 * #L%
     26 */
    527
    628import de.mpiwg.itgroup.annotations.neo4j.AnnotationStore;
  • src/main/java/de/mpiwg/itgroup/annotations/Annotation.java

    r50 r70  
    33 */
    44package de.mpiwg.itgroup.annotations;
     5
     6/*
     7 * #%L
     8 * AnnotationManager
     9 * %%
     10 * Copyright (C) 2012 - 2014 MPIWG Berlin
     11 * %%
     12 * This program is free software: you can redistribute it and/or modify
     13 * it under the terms of the GNU Lesser General Public License as
     14 * published by the Free Software Foundation, either version 3 of the
     15 * License, or (at your option) any later version.
     16 *
     17 * This program is distributed in the hope that it will be useful,
     18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     20 * GNU General Lesser Public License for more details.
     21 *
     22 * You should have received a copy of the GNU General Lesser Public
     23 * License along with this program.  If not, see
     24 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     25 * #L%
     26 */
    527
    628import java.io.UnsupportedEncodingException;
  • src/main/java/de/mpiwg/itgroup/annotations/Group.java

    r15 r70  
    33 */
    44package de.mpiwg.itgroup.annotations;
     5
     6/*
     7 * #%L
     8 * AnnotationManager
     9 * %%
     10 * Copyright (C) 2012 - 2014 MPIWG Berlin
     11 * %%
     12 * This program is free software: you can redistribute it and/or modify
     13 * it under the terms of the GNU Lesser General Public License as
     14 * published by the Free Software Foundation, either version 3 of the
     15 * License, or (at your option) any later version.
     16 *
     17 * This program is distributed in the hope that it will be useful,
     18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     20 * GNU General Lesser Public License for more details.
     21 *
     22 * You should have received a copy of the GNU General Lesser Public
     23 * License along with this program.  If not, see
     24 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     25 * #L%
     26 */
    527
    628/**
  • src/main/java/de/mpiwg/itgroup/annotations/NS.java

    r58 r70  
    11package de.mpiwg.itgroup.annotations;
     2
     3/*
     4 * #%L
     5 * AnnotationManager
     6 * %%
     7 * Copyright (C) 2012 - 2014 MPIWG Berlin
     8 * %%
     9 * This program is free software: you can redistribute it and/or modify
     10 * it under the terms of the GNU Lesser General Public License as
     11 * published by the Free Software Foundation, either version 3 of the
     12 * License, or (at your option) any later version.
     13 *
     14 * This program 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 Lesser Public License for more details.
     18 *
     19 * You should have received a copy of the GNU General Lesser Public
     20 * License along with this program.  If not, see
     21 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     22 * #L%
     23 */
    224
    325public class NS {
  • src/main/java/de/mpiwg/itgroup/annotations/Person.java

    r69 r70  
    33 */
    44package de.mpiwg.itgroup.annotations;
     5
     6/*
     7 * #%L
     8 * AnnotationManager
     9 * %%
     10 * Copyright (C) 2012 - 2014 MPIWG Berlin
     11 * %%
     12 * This program is free software: you can redistribute it and/or modify
     13 * it under the terms of the GNU Lesser General Public License as
     14 * published by the Free Software Foundation, either version 3 of the
     15 * License, or (at your option) any later version.
     16 *
     17 * This program is distributed in the hope that it will be useful,
     18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     20 * GNU General Lesser Public License for more details.
     21 *
     22 * You should have received a copy of the GNU General Lesser Public
     23 * License along with this program.  If not, see
     24 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     25 * #L%
     26 */
    527
    628import de.mpiwg.itgroup.annotations.restlet.BaseRestlet;
  • src/main/java/de/mpiwg/itgroup/annotations/Resource.java

    r42 r70  
    33 */
    44package de.mpiwg.itgroup.annotations;
     5
     6/*
     7 * #%L
     8 * AnnotationManager
     9 * %%
     10 * Copyright (C) 2012 - 2014 MPIWG Berlin
     11 * %%
     12 * This program is free software: you can redistribute it and/or modify
     13 * it under the terms of the GNU Lesser General Public License as
     14 * published by the Free Software Foundation, either version 3 of the
     15 * License, or (at your option) any later version.
     16 *
     17 * This program is distributed in the hope that it will be useful,
     18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     20 * GNU General Lesser Public License for more details.
     21 *
     22 * You should have received a copy of the GNU General Lesser Public
     23 * License along with this program.  If not, see
     24 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     25 * #L%
     26 */
    527
    628/**
  • src/main/java/de/mpiwg/itgroup/annotations/Tag.java

    r58 r70  
    11package de.mpiwg.itgroup.annotations;
     2
     3/*
     4 * #%L
     5 * AnnotationManager
     6 * %%
     7 * Copyright (C) 2012 - 2014 MPIWG Berlin
     8 * %%
     9 * This program is free software: you can redistribute it and/or modify
     10 * it under the terms of the GNU Lesser General Public License as
     11 * published by the Free Software Foundation, either version 3 of the
     12 * License, or (at your option) any later version.
     13 *
     14 * This program 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 Lesser Public License for more details.
     18 *
     19 * You should have received a copy of the GNU General Lesser Public
     20 * License along with this program.  If not, see
     21 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     22 * #L%
     23 */
    224
    325import de.mpiwg.itgroup.annotations.restlet.BaseRestlet;
  • src/main/java/de/mpiwg/itgroup/annotations/Target.java

    r42 r70  
    33 */
    44package de.mpiwg.itgroup.annotations;
     5
     6/*
     7 * #%L
     8 * AnnotationManager
     9 * %%
     10 * Copyright (C) 2012 - 2014 MPIWG Berlin
     11 * %%
     12 * This program is free software: you can redistribute it and/or modify
     13 * it under the terms of the GNU Lesser General Public License as
     14 * published by the Free Software Foundation, either version 3 of the
     15 * License, or (at your option) any later version.
     16 *
     17 * This program is distributed in the hope that it will be useful,
     18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     20 * GNU General Lesser Public License for more details.
     21 *
     22 * You should have received a copy of the GNU General Lesser Public
     23 * License along with this program.  If not, see
     24 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     25 * #L%
     26 */
    527
    628/**
  • src/main/java/de/mpiwg/itgroup/annotations/Uri.java

    r42 r70  
    11package de.mpiwg.itgroup.annotations;
     2
     3/*
     4 * #%L
     5 * AnnotationManager
     6 * %%
     7 * Copyright (C) 2012 - 2014 MPIWG Berlin
     8 * %%
     9 * This program is free software: you can redistribute it and/or modify
     10 * it under the terms of the GNU Lesser General Public License as
     11 * published by the Free Software Foundation, either version 3 of the
     12 * License, or (at your option) any later version.
     13 *
     14 * This program 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 Lesser Public License for more details.
     18 *
     19 * You should have received a copy of the GNU General Lesser Public
     20 * License along with this program.  If not, see
     21 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     22 * #L%
     23 */
    224
    325/**
  • src/main/java/de/mpiwg/itgroup/annotations/neo4j/AnnotationStore.java

    r68 r70  
    33 */
    44package de.mpiwg.itgroup.annotations.neo4j;
     5
     6/*
     7 * #%L
     8 * AnnotationManager
     9 * %%
     10 * Copyright (C) 2012 - 2014 MPIWG Berlin
     11 * %%
     12 * This program is free software: you can redistribute it and/or modify
     13 * it under the terms of the GNU Lesser General Public License as
     14 * published by the Free Software Foundation, either version 3 of the
     15 * License, or (at your option) any later version.
     16 *
     17 * This program is distributed in the hope that it will be useful,
     18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     20 * GNU General Lesser Public License for more details.
     21 *
     22 * You should have received a copy of the GNU General Lesser Public
     23 * License along with this program.  If not, see
     24 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     25 * #L%
     26 * Author: Robert Casties (casties@mpiwg-berlin.mpg.de)
     27 */
    528
    629import java.util.ArrayList;
  • src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorAnnotations.java

    r65 r70  
    44 */
    55package de.mpiwg.itgroup.annotations.restlet;
     6
     7/*
     8 * #%L
     9 * AnnotationManager
     10 * %%
     11 * Copyright (C) 2012 - 2014 MPIWG Berlin
     12 * %%
     13 * This program is free software: you can redistribute it and/or modify
     14 * it under the terms of the GNU Lesser General Public License as
     15 * published by the Free Software Foundation, either version 3 of the
     16 * License, or (at your option) any later version.
     17 *
     18 * This program is distributed in the hope that it will be useful,
     19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     21 * GNU General Lesser Public License for more details.
     22 *
     23 * You should have received a copy of the GNU General Lesser Public
     24 * License along with this program.  If not, see
     25 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     26 * #L%
     27 */
    628
    729import java.io.IOException;
  • src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorAnnotationsByResources.java

    r65 r70  
    11package de.mpiwg.itgroup.annotations.restlet;
     2
     3/*
     4 * #%L
     5 * AnnotationManager
     6 * %%
     7 * Copyright (C) 2012 - 2014 MPIWG Berlin
     8 * %%
     9 * This program is free software: you can redistribute it and/or modify
     10 * it under the terms of the GNU Lesser General Public License as
     11 * published by the Free Software Foundation, either version 3 of the
     12 * License, or (at your option) any later version.
     13 *
     14 * This program 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 Lesser Public License for more details.
     18 *
     19 * You should have received a copy of the GNU General Lesser Public
     20 * License along with this program.  If not, see
     21 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     22 * #L%
     23 */
    224
    325import java.io.UnsupportedEncodingException;
  • src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorAnnotationsByTags.java

    r65 r70  
    11package de.mpiwg.itgroup.annotations.restlet;
     2
     3/*
     4 * #%L
     5 * AnnotationManager
     6 * %%
     7 * Copyright (C) 2012 - 2014 MPIWG Berlin
     8 * %%
     9 * This program is free software: you can redistribute it and/or modify
     10 * it under the terms of the GNU Lesser General Public License as
     11 * published by the Free Software Foundation, either version 3 of the
     12 * License, or (at your option) any later version.
     13 *
     14 * This program 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 Lesser Public License for more details.
     18 *
     19 * You should have received a copy of the GNU General Lesser Public
     20 * License along with this program.  If not, see
     21 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     22 * #L%
     23 */
    224
    325import java.io.UnsupportedEncodingException;
  • src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorGroups.java

    r15 r70  
    33 */
    44package de.mpiwg.itgroup.annotations.restlet;
     5
     6/*
     7 * #%L
     8 * AnnotationManager
     9 * %%
     10 * Copyright (C) 2012 - 2014 MPIWG Berlin
     11 * %%
     12 * This program is free software: you can redistribute it and/or modify
     13 * it under the terms of the GNU Lesser General Public License as
     14 * published by the Free Software Foundation, either version 3 of the
     15 * License, or (at your option) any later version.
     16 *
     17 * This program is distributed in the hope that it will be useful,
     18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     20 * GNU General Lesser Public License for more details.
     21 *
     22 * You should have received a copy of the GNU General Lesser Public
     23 * License along with this program.  If not, see
     24 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     25 * #L%
     26 */
    527
    628import java.util.List;
  • src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorInfo.java

    r18 r70  
    11package de.mpiwg.itgroup.annotations.restlet;
     2
     3/*
     4 * #%L
     5 * AnnotationManager
     6 * %%
     7 * Copyright (C) 2012 - 2014 MPIWG Berlin
     8 * %%
     9 * This program is free software: you can redistribute it and/or modify
     10 * it under the terms of the GNU Lesser General Public License as
     11 * published by the Free Software Foundation, either version 3 of the
     12 * License, or (at your option) any later version.
     13 *
     14 * This program 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 Lesser Public License for more details.
     18 *
     19 * You should have received a copy of the GNU General Lesser Public
     20 * License along with this program.  If not, see
     21 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     22 * #L%
     23 */
    224
    325import java.io.InputStream;
  • src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorResourceImpl.java

    r64 r70  
    33 */
    44package de.mpiwg.itgroup.annotations.restlet;
     5
     6/*
     7 * #%L
     8 * AnnotationManager
     9 * %%
     10 * Copyright (C) 2012 - 2014 MPIWG Berlin
     11 * %%
     12 * This program is free software: you can redistribute it and/or modify
     13 * it under the terms of the GNU Lesser General Public License as
     14 * published by the Free Software Foundation, either version 3 of the
     15 * License, or (at your option) any later version.
     16 *
     17 * This program is distributed in the hope that it will be useful,
     18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     20 * GNU General Lesser Public License for more details.
     21 *
     22 * You should have received a copy of the GNU General Lesser Public
     23 * License along with this program.  If not, see
     24 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     25 * #L%
     26 */
    527
    628import java.io.UnsupportedEncodingException;
  • src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorResources.java

    r65 r70  
    33 */
    44package de.mpiwg.itgroup.annotations.restlet;
     5
     6/*
     7 * #%L
     8 * AnnotationManager
     9 * %%
     10 * Copyright (C) 2012 - 2014 MPIWG Berlin
     11 * %%
     12 * This program is free software: you can redistribute it and/or modify
     13 * it under the terms of the GNU Lesser General Public License as
     14 * published by the Free Software Foundation, either version 3 of the
     15 * License, or (at your option) any later version.
     16 *
     17 * This program is distributed in the hope that it will be useful,
     18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     20 * GNU General Lesser Public License for more details.
     21 *
     22 * You should have received a copy of the GNU General Lesser Public
     23 * License along with this program.  If not, see
     24 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     25 * #L%
     26 */
    527
    628import java.io.UnsupportedEncodingException;
  • src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorRestlet.java

    r68 r70  
    33 */
    44package de.mpiwg.itgroup.annotations.restlet;
     5
     6/*
     7 * #%L
     8 * AnnotationManager
     9 * %%
     10 * Copyright (C) 2012 - 2014 MPIWG Berlin
     11 * %%
     12 * This program is free software: you can redistribute it and/or modify
     13 * it under the terms of the GNU Lesser General Public License as
     14 * published by the Free Software Foundation, either version 3 of the
     15 * License, or (at your option) any later version.
     16 *
     17 * This program is distributed in the hope that it will be useful,
     18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     20 * GNU General Lesser Public License for more details.
     21 *
     22 * You should have received a copy of the GNU General Lesser Public
     23 * License along with this program.  If not, see
     24 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     25 * #L%
     26 */
    527
    628import org.apache.log4j.Logger;
  • src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorSearch.java

    r63 r70  
    33 */
    44package de.mpiwg.itgroup.annotations.restlet;
     5
     6/*
     7 * #%L
     8 * AnnotationManager
     9 * %%
     10 * Copyright (C) 2012 - 2014 MPIWG Berlin
     11 * %%
     12 * This program is free software: you can redistribute it and/or modify
     13 * it under the terms of the GNU Lesser General Public License as
     14 * published by the Free Software Foundation, either version 3 of the
     15 * License, or (at your option) any later version.
     16 *
     17 * This program is distributed in the hope that it will be useful,
     18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     20 * GNU General Lesser Public License for more details.
     21 *
     22 * You should have received a copy of the GNU General Lesser Public
     23 * License along with this program.  If not, see
     24 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     25 * #L%
     26 */
    527
    628import java.util.ArrayList;
  • src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorTags.java

    r65 r70  
    33 */
    44package de.mpiwg.itgroup.annotations.restlet;
     5
     6/*
     7 * #%L
     8 * AnnotationManager
     9 * %%
     10 * Copyright (C) 2012 - 2014 MPIWG Berlin
     11 * %%
     12 * This program is free software: you can redistribute it and/or modify
     13 * it under the terms of the GNU Lesser General Public License as
     14 * published by the Free Software Foundation, either version 3 of the
     15 * License, or (at your option) any later version.
     16 *
     17 * This program is distributed in the hope that it will be useful,
     18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     20 * GNU General Lesser Public License for more details.
     21 *
     22 * You should have received a copy of the GNU General Lesser Public
     23 * License along with this program.  If not, see
     24 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     25 * #L%
     26 */
    527
    628import java.io.UnsupportedEncodingException;
  • src/main/java/de/mpiwg/itgroup/annotations/restlet/BaseRestlet.java

    r66 r70  
    11package de.mpiwg.itgroup.annotations.restlet;
     2
     3/*
     4 * #%L
     5 * AnnotationManager
     6 * %%
     7 * Copyright (C) 2012 - 2014 MPIWG Berlin
     8 * %%
     9 * This program is free software: you can redistribute it and/or modify
     10 * it under the terms of the GNU Lesser General Public License as
     11 * published by the Free Software Foundation, either version 3 of the
     12 * License, or (at your option) any later version.
     13 *
     14 * This program 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 Lesser Public License for more details.
     18 *
     19 * You should have received a copy of the GNU General Lesser Public
     20 * License along with this program.  If not, see
     21 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     22 * #L%
     23 * Author: Robert Casties (casties@mpiwg-berlin.mpg.de)
     24 */
    225
    326import java.io.File;
     
    2447import org.neo4j.graphdb.factory.GraphDatabaseFactory;
    2548import org.neo4j.graphdb.factory.GraphDatabaseSettings;
    26 import org.neo4j.kernel.AbstractGraphDatabase;
    2749import org.neo4j.kernel.GraphDatabaseAPI;
    2850import org.neo4j.server.WrappingNeoServerBootstrapper;
  • src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/AnnotationResource.java

    r65 r70  
    33 */
    44package de.mpiwg.itgroup.annotations.restlet.annotations_ui;
     5
     6/*
     7 * #%L
     8 * AnnotationManager
     9 * %%
     10 * Copyright (C) 2012 - 2014 MPIWG Berlin
     11 * %%
     12 * This program is free software: you can redistribute it and/or modify
     13 * it under the terms of the GNU Lesser General Public License as
     14 * published by the Free Software Foundation, either version 3 of the
     15 * License, or (at your option) any later version.
     16 *
     17 * This program is distributed in the hope that it will be useful,
     18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     20 * GNU General Lesser Public License for more details.
     21 *
     22 * You should have received a copy of the GNU General Lesser Public
     23 * License along with this program.  If not, see
     24 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     25 * #L%
     26 */
    527
    628import java.io.UnsupportedEncodingException;
  • src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/AnnotationsResource.java

    r50 r70  
    33 */
    44package de.mpiwg.itgroup.annotations.restlet.annotations_ui;
     5
     6/*
     7 * #%L
     8 * AnnotationManager
     9 * %%
     10 * Copyright (C) 2012 - 2014 MPIWG Berlin
     11 * %%
     12 * This program is free software: you can redistribute it and/or modify
     13 * it under the terms of the GNU Lesser General Public License as
     14 * published by the Free Software Foundation, either version 3 of the
     15 * License, or (at your option) any later version.
     16 *
     17 * This program is distributed in the hope that it will be useful,
     18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     20 * GNU General Lesser Public License for more details.
     21 *
     22 * You should have received a copy of the GNU General Lesser Public
     23 * License along with this program.  If not, see
     24 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     25 * #L%
     26 */
    527
    628import java.util.List;
  • src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/AnnotationsUiRestlet.java

    r53 r70  
    33 */
    44package de.mpiwg.itgroup.annotations.restlet.annotations_ui;
     5
     6/*
     7 * #%L
     8 * AnnotationManager
     9 * %%
     10 * Copyright (C) 2012 - 2014 MPIWG Berlin
     11 * %%
     12 * This program is free software: you can redistribute it and/or modify
     13 * it under the terms of the GNU Lesser General Public License as
     14 * published by the Free Software Foundation, either version 3 of the
     15 * License, or (at your option) any later version.
     16 *
     17 * This program is distributed in the hope that it will be useful,
     18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     20 * GNU General Lesser Public License for more details.
     21 *
     22 * You should have received a copy of the GNU General Lesser Public
     23 * License along with this program.  If not, see
     24 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     25 * #L%
     26 */
    527
    628import org.apache.log4j.Logger;
  • src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/GroupMembersResource.java

    r50 r70  
    33 */
    44package de.mpiwg.itgroup.annotations.restlet.annotations_ui;
     5
     6/*
     7 * #%L
     8 * AnnotationManager
     9 * %%
     10 * Copyright (C) 2012 - 2014 MPIWG Berlin
     11 * %%
     12 * This program is free software: you can redistribute it and/or modify
     13 * it under the terms of the GNU Lesser General Public License as
     14 * published by the Free Software Foundation, either version 3 of the
     15 * License, or (at your option) any later version.
     16 *
     17 * This program is distributed in the hope that it will be useful,
     18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     20 * GNU General Lesser Public License for more details.
     21 *
     22 * You should have received a copy of the GNU General Lesser Public
     23 * License along with this program.  If not, see
     24 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     25 * #L%
     26 */
    527
    628import java.util.List;
  • src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/GroupResource.java

    r65 r70  
    33 */
    44package de.mpiwg.itgroup.annotations.restlet.annotations_ui;
     5
     6/*
     7 * #%L
     8 * AnnotationManager
     9 * %%
     10 * Copyright (C) 2012 - 2014 MPIWG Berlin
     11 * %%
     12 * This program is free software: you can redistribute it and/or modify
     13 * it under the terms of the GNU Lesser General Public License as
     14 * published by the Free Software Foundation, either version 3 of the
     15 * License, or (at your option) any later version.
     16 *
     17 * This program is distributed in the hope that it will be useful,
     18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     20 * GNU General Lesser Public License for more details.
     21 *
     22 * You should have received a copy of the GNU General Lesser Public
     23 * License along with this program.  If not, see
     24 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     25 * #L%
     26 */
    527
    628import java.io.UnsupportedEncodingException;
  • src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/GroupsResource.java

    r32 r70  
    33 */
    44package de.mpiwg.itgroup.annotations.restlet.annotations_ui;
     5
     6/*
     7 * #%L
     8 * AnnotationManager
     9 * %%
     10 * Copyright (C) 2012 - 2014 MPIWG Berlin
     11 * %%
     12 * This program is free software: you can redistribute it and/or modify
     13 * it under the terms of the GNU Lesser General Public License as
     14 * published by the Free Software Foundation, either version 3 of the
     15 * License, or (at your option) any later version.
     16 *
     17 * This program is distributed in the hope that it will be useful,
     18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     20 * GNU General Lesser Public License for more details.
     21 *
     22 * You should have received a copy of the GNU General Lesser Public
     23 * License along with this program.  If not, see
     24 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     25 * #L%
     26 */
    527
    628import java.util.List;
  • src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/InfoResource.java

    r23 r70  
    11package de.mpiwg.itgroup.annotations.restlet.annotations_ui;
     2
     3/*
     4 * #%L
     5 * AnnotationManager
     6 * %%
     7 * Copyright (C) 2012 - 2014 MPIWG Berlin
     8 * %%
     9 * This program is free software: you can redistribute it and/or modify
     10 * it under the terms of the GNU Lesser General Public License as
     11 * published by the Free Software Foundation, either version 3 of the
     12 * License, or (at your option) any later version.
     13 *
     14 * This program 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 Lesser Public License for more details.
     18 *
     19 * You should have received a copy of the GNU General Lesser Public
     20 * License along with this program.  If not, see
     21 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     22 * #L%
     23 */
    224
    325import java.io.InputStream;
  • src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/PersonResource.java

    r65 r70  
    33 */
    44package de.mpiwg.itgroup.annotations.restlet.annotations_ui;
     5
     6/*
     7 * #%L
     8 * AnnotationManager
     9 * %%
     10 * Copyright (C) 2012 - 2014 MPIWG Berlin
     11 * %%
     12 * This program is free software: you can redistribute it and/or modify
     13 * it under the terms of the GNU Lesser General Public License as
     14 * published by the Free Software Foundation, either version 3 of the
     15 * License, or (at your option) any later version.
     16 *
     17 * This program is distributed in the hope that it will be useful,
     18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     20 * GNU General Lesser Public License for more details.
     21 *
     22 * You should have received a copy of the GNU General Lesser Public
     23 * License along with this program.  If not, see
     24 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     25 * #L%
     26 */
    527
    628import java.io.UnsupportedEncodingException;
  • src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/PersonsResource.java

    r65 r70  
    33 */
    44package de.mpiwg.itgroup.annotations.restlet.annotations_ui;
     5
     6/*
     7 * #%L
     8 * AnnotationManager
     9 * %%
     10 * Copyright (C) 2012 - 2014 MPIWG Berlin
     11 * %%
     12 * This program is free software: you can redistribute it and/or modify
     13 * it under the terms of the GNU Lesser General Public License as
     14 * published by the Free Software Foundation, either version 3 of the
     15 * License, or (at your option) any later version.
     16 *
     17 * This program is distributed in the hope that it will be useful,
     18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     20 * GNU General Lesser Public License for more details.
     21 *
     22 * You should have received a copy of the GNU General Lesser Public
     23 * License along with this program.  If not, see
     24 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     25 * #L%
     26 */
    527
    628import java.util.List;
  • src/main/java/de/mpiwg/itgroup/annotations/restlet/utils/JSONObjectComparator.java

    r63 r70  
    11package de.mpiwg.itgroup.annotations.restlet.utils;
     2
     3/*
     4 * #%L
     5 * AnnotationManager
     6 * %%
     7 * Copyright (C) 2012 - 2014 MPIWG Berlin
     8 * %%
     9 * This program is free software: you can redistribute it and/or modify
     10 * it under the terms of the GNU Lesser General Public License as
     11 * published by the Free Software Foundation, either version 3 of the
     12 * License, or (at your option) any later version.
     13 *
     14 * This program 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 Lesser Public License for more details.
     18 *
     19 * You should have received a copy of the GNU General Lesser Public
     20 * License along with this program.  If not, see
     21 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
     22 * #L%
     23 * Author: Dirk Wintergruen (dwinter@mpiwg-berlin.mpg.de)
     24 */
    225
    326import java.util.Comparator;
Note: See TracChangeset for help on using the changeset viewer.