Mercurial > dive4elements > river
view flys-client/src/main/java/de/intevation/flys/client/server/SetCollectionTTLServiceImpl.java @ 1259:54365104835c 2.5
merged flys-backend/2.5
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:14:18 +0200 |
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.SetCollectionTTLService; /** * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a> */ public class SetCollectionTTLServiceImpl extends DoCollectionAction implements SetCollectionTTLService { public static final String XPATH_RESULT = "/art:result/text()"; public static final String OPERATION_FAILURE = "FAILED"; public void setTTL(Collection c, String url) throws ServerException { System.out.println("Set ttl of collection: " + c.identifier()); long ttl = c.getTTL(); String value = null; if (ttl == 0) { value = "INF"; } else if (ttl < 0) { value = "DEFAULT"; } else { value = String.valueOf(ttl); } Document set = ClientProtocolUtils.newSetCollectionTTLDocument(value); doAction(c, set, url); } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :