source: AnnotationManagerN4J/src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorRestlet.java @ 89:247cbbb385de

Last change on this file since 89:247cbbb385de was 89:247cbbb385de, checked in by casties, 9 years ago

improved logging.

File size: 2.3 KB
Line 
1package 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 */
24
25import org.restlet.Restlet;
26import org.restlet.routing.Router;
27
28/**
29 * @author casties
30 *
31 */
32public class AnnotatorRestlet extends BaseRestlet {
33
34    public final String version = "AnnotationManagerN4J/Annotator 0.5.0";
35
36    /*
37     * (non-Javadoc)
38     *
39     * @see org.restlet.Application#createInboundRoot()
40     */
41    @Override
42    public Restlet createInboundRoot() {
43        // this.authenticator = createAuthenticator();
44
45        Router router = new Router(getContext());
46
47        router.attach("/annotations", AnnotatorAnnotations.class);
48        router.attach("/annotations/{id}", AnnotatorAnnotations.class);
49        router.attach("/search", AnnotatorSearch.class);
50        router.attach("/groups", AnnotatorGroups.class);
51        router.attach("/tags", AnnotatorTags.class);
52        router.attach("/tags/{id}", AnnotatorTags.class);
53        router.attach("/tags/{id}/annotations", AnnotatorAnnotationsByTags.class);
54        router.attach("/resources", AnnotatorResources.class);
55        router.attach("/resources/{id}", AnnotatorResources.class);
56        router.attach("/resources/{id}/annotations", AnnotatorAnnotationsByResources.class);
57        router.attach("/", AnnotatorInfo.class);
58        // authenticator.setNext(router);
59        // return authenticator;
60
61        return router;
62    }
63
64    /* (non-Javadoc)
65     * @see de.mpiwg.itgroup.annotations.restlet.RestletImpl#getVersion()
66     */
67    @Override
68    public String getVersion() {
69        return version;
70    }
71
72}
Note: See TracBrowser for help on using the repository browser.