com.frightanic.smn.view.IndexView Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of open-data-smn Show documentation
Show all versions of open-data-smn Show documentation
An API to serve publicly available data from the SwissMetNet.
package com.frightanic.smn.view;
import io.dropwizard.views.View;
public class IndexView extends View {
public IndexView() {
super("index.ftl");
}
public String getTitle() {
return "OpenData SMN - SwissMetNet SMN for OpenData.ch";
}
}