/** * Copyright (c) 2011 Ontology Engineering Group, * Departamento de Inteligencia Artificial, * Facultad de Informetica, Universidad * Politecnica de Madrid, Spain * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package es.upm.fi.dia.oeg.map4rdf.share.conf; /** * @author Alexander De Leon */ public class ParameterNames { public static final String ADMIN = "admin"; public static final String ENDPOINT_URL = "endpoint.url.generic"; public static final String ENDPOINT_URL_GEOSPARQL = "endpoint.url.geosparql"; public static final String GEOMETRY_MODEL = "geometry.model"; public static final String GOOGLE_MAPS_API_KEY = "ui.google_maps_api_key"; public static final String LOGO_IMG_SRC = "ui.logo_src"; public static final String FACETS_AUTO = "facets.automatic"; public static final String FACETS_FILE = "facets.file"; public static final String DRAW_COLOURS_BY = "ui.draw_colours.by"; public static final String EDIT_DEPTH = "edit_depth"; public static final String RDF_STORE_PATH = "rdf_store_path"; public static final String ROUTES_SERVICE_TIMEOUT_MILISECONDS = "route_service_timeout_ms"; public static final String DEFAULT_PROJECTION = "default_projection"; public static final String MAP_DEFAULT_CENTER= "map_default_center"; public static final String MAP_ZOOM_LEVEL = "map_zoom_level"; public static final String SPHERICAL_MERCATOR = "spherical_mercator"; public static final String SUMMARY_WIDGETS = "summary_widgets"; public static final String TWITTER_STATUS_URL = "twitter_status_url"; public static final String STATISTICS_SERVICE_URL = "statistics_service_url"; public static final String ADDITIONAL_INFO = "additional_info"; public static final String CONFIGURATION_DESCRIPTION = "configuration.description"; public static final String CONFIGURATION_IMAGE = "configuration.ui.image"; public static final String CONFIGURATION_LABELS = "configuration.labels"; }