tom@8858: /* Copyright (C) 2011, 2012, 2013 by Bundesanstalt für Gewässerkunde tom@8858: * Software engineering by Intevation GmbH tom@8858: * tom@8858: * This file is Free Software under the GNU AGPL (>=v3) tom@8858: * and comes with ABSOLUTELY NO WARRANTY! Check out the tom@8858: * documentation coming with Dive4Elements River for details. tom@8858: */ tom@8858: christian@6475: package org.dive4elements.river.client.client.services; christian@6475: christian@6475: import com.google.gwt.user.client.rpc.RemoteService; christian@6475: import com.google.gwt.user.client.rpc.RemoteServiceRelativePath; christian@6475: christian@6475: import java.util.Map; christian@6475: christian@6475: /** christian@6475: * Service that provides server configuration values relevant to the client. christian@6475: * christian@6475: * @author Christian Lins christian@6475: * christian@6475: */ christian@6475: @RemoteServiceRelativePath("server-info") christian@6475: public interface ServerInfoService extends RemoteService { christian@6475: christian@6475: Map getConfig(String locale); christian@6475: }