Mercurial > dive4elements > river
view flys-client/src/main/java/de/intevation/flys/client/server/CollectionAttributeServiceImpl.java @ 528:39d9291513cc
Connected the actions in the navigation panel with the theme list in the ChartThemePanel - themes can be moved now.
flys-client/trunk@2009 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Thu, 26 May 2011 13:53:36 +0000 |
parents | 96e60e0a4345 |
children | 26e38b79658d |
line wrap: on
line source
package de.intevation.flys.client.server; import de.intevation.flys.client.shared.exceptions.ServerException; import de.intevation.flys.client.shared.model.Collection; import de.intevation.flys.client.client.services.CollectionAttributeService; /** * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a> */ public class CollectionAttributeServiceImpl extends DescribeCollectionServiceImpl implements CollectionAttributeService { public Collection update(Collection collection, String url, String locale) throws ServerException { System.out.println("CollectionAttributeServiceImpl.update"); // TODO Implement the correct update process here! try { Thread.currentThread().sleep(5000); } catch (InterruptedException ie) { // do nothing } return describe(collection.identifier(), url, locale); } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :