Mercurial > dive4elements > river
view flys-client/src/main/java/de/intevation/flys/client/server/SetCollectionNameServiceImpl.java @ 809:e9337488bac3
The Collection now knows its already loaded recommendations - the CollectionView will not load recommendations that have already been loaded before.
flys-client/trunk@2397 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Fri, 22 Jul 2011 12:23:36 +0000 |
parents | 1dbffe4c6d12 |
children | ab8eb2f544f2 |
line wrap: on
line source
package de.intevation.flys.client.server; import org.w3c.dom.Document; import de.intevation.artifacts.common.utils.ClientProtocolUtils; import de.intevation.flys.client.shared.exceptions.ServerException; import de.intevation.flys.client.shared.model.Collection; import de.intevation.flys.client.client.services.SetCollectionNameService; /** * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a> */ public class SetCollectionNameServiceImpl extends DoCollectionAction implements SetCollectionNameService { public void setName(Collection c, String url) throws ServerException { System.out.println("Set name of collection: " + c.identifier()); String name = c.getName(); Document set = ClientProtocolUtils.newSetCollectionNameDocument(name); doAction(c, set, url); } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :