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

added lgpl_v3 license information.
author casties
date Thu, 06 Mar 2014 15:09:04 +0100
parents aafa3884b2c4
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
1 package de.mpiwg.itgroup.annotations.restlet;
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
2
70
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 18
diff changeset
3 /*
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 18
diff changeset
4 * #%L
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 18
diff changeset
5 * AnnotationManager
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 18
diff changeset
6 * %%
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 18
diff changeset
7 * Copyright (C) 2012 - 2014 MPIWG Berlin
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 18
diff changeset
8 * %%
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 18
diff changeset
9 * This program is free software: you can redistribute it and/or modify
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 18
diff changeset
10 * it under the terms of the GNU Lesser General Public License as
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 18
diff changeset
11 * published by the Free Software Foundation, either version 3 of the
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 18
diff changeset
12 * License, or (at your option) any later version.
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 18
diff changeset
13 *
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 18
diff changeset
14 * This program is distributed in the hope that it will be useful,
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 18
diff changeset
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 18
diff changeset
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 18
diff changeset
17 * GNU General Lesser Public License for more details.
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 18
diff changeset
18 *
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 18
diff changeset
19 * You should have received a copy of the GNU General Lesser Public
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 18
diff changeset
20 * License along with this program. If not, see
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 18
diff changeset
21 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 18
diff changeset
22 * #L%
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 18
diff changeset
23 */
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 18
diff changeset
24
1
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
25 import java.io.InputStream;
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
26
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
27 import org.restlet.data.MediaType;
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
28 import org.restlet.representation.InputRepresentation;
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
29 import org.restlet.representation.Representation;
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
30 import org.restlet.resource.Get;
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
31 import org.restlet.resource.ServerResource;
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
32
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
33
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
34 public class AnnotatorInfo extends ServerResource {
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
35
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
36 @Get("html")
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
37 public Representation getHTML(){
2
f2d44c41eedf nothing much
casties
parents: 1
diff changeset
38 InputStream is = getClass().getResourceAsStream("/de/mpiwg/itgroup/annotations/annotator-info.html");
1
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
39
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
40 Representation rep = new InputRepresentation(is,MediaType.TEXT_HTML);
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
41 return rep;
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
42
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
43 }
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
44
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
45 }
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
46