source: VirtualCollectionRegistry/branches/VirtualCollectionRegistry-1.0-beta/src/main/java/eu/clarin/cmdi/virtualcollectionregistry/gui/pages/HelpPage.java @ 5596

Last change on this file since 5596 was 5596, checked in by Twan Goosen, 10 years ago

created a branch for VCR 1.0-beta. Trunk now 1.1-SNAPSHOT

File size: 1.5 KB
Line 
1/*
2 * Copyright (C) 2014 CLARIN
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17package eu.clarin.cmdi.virtualcollectionregistry.gui.pages;
18
19import org.apache.wicket.markup.html.basic.Label;
20import org.apache.wicket.markup.html.link.ExternalLink;
21import org.apache.wicket.protocol.http.WebApplication;
22
23/**
24 *
25 * @author twagoo
26 */
27public class HelpPage extends BasePage {
28
29    public static final String BASE_URI = "eu.clarin.cmdi.virtualcollectionregistry.base_uri";
30
31    public HelpPage() {
32        final String baseUri = WebApplication.get().getServletContext().getInitParameter(BASE_URI);
33        final String serviceBaseUri = String.format("%s/service", baseUri);
34
35        add(new ExternalLink("restLink", serviceBaseUri)
36                .add(new Label("restUrl", serviceBaseUri)));
37        add(new ExternalLink("wadlLink", String.format("%s/application.wadl", serviceBaseUri)));
38    }
39
40}
Note: See TracBrowser for help on using the repository browser.