view gwt-client/src/main/java/org/dive4elements/river/client/server/DeleteCollectionServiceImpl.java @ 9709:b74f817435fe

comment removed
author dnt_bjoernsen <d.tironi@bjoernsen.de>
date Wed, 27 Jan 2021 11:47:38 +0100
parents 238fc722f87a
children 0a5239a1e46e
line wrap: on
line source
/* Copyright (C) 2011, 2012, 2013 by Bundesanstalt für Gewässerkunde
 * Software engineering by Intevation GmbH
 *
 * This file is Free Software under the GNU AGPL (>=v3)
 * and comes with ABSOLUTELY NO WARRANTY! Check out the
 * documentation coming with Dive4Elements River for details.
 */

package org.dive4elements.river.client.server;

import org.w3c.dom.Document;

import org.apache.log4j.Logger;

import org.dive4elements.artifacts.common.utils.ClientProtocolUtils;

import org.dive4elements.river.client.shared.exceptions.ServerException;
import org.dive4elements.river.client.shared.model.Collection;
import org.dive4elements.river.client.client.services.DeleteCollectionService;


/**
 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
 */
public class DeleteCollectionServiceImpl
extends      DoCollectionAction
implements   DeleteCollectionService
{
    private static final Logger log =
        Logger.getLogger(DeleteCollectionServiceImpl.class);


    public static final String XPATH_RESULT      = "/art:result/text()";
    public static final String OPERATION_FAILURE = "FAILED";

    public void delete(Collection c)
    throws ServerException
    {
        log.info("Delete collection: " + c.identifier());

        String url  = getServletContext().getInitParameter("server-url");

        Document del = ClientProtocolUtils.newDeleteCollectionDocument();

        doAction(c, del, url);
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org