All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.geoserver.wfs.kvp.ReleaseLockKvpRequestReader Maven / Gradle / Ivy

The newest version!
/* Copyright (c) 2001 - 2007 TOPP - www.openplans.org. All rights reserved.
 * This code is licensed under the GPL 2.0 license, availible at the root
 * application directory.
 */
package org.geoserver.wfs.kvp;

import org.geoserver.ows.KvpRequestReader;
import java.util.Map;


public class ReleaseLockKvpRequestReader extends KvpRequestReader {
    public ReleaseLockKvpRequestReader() {
        super(String.class);
    }

    public Object createRequest() throws Exception {
        return new String();
    }

    public Object read(Object request, Map kvp, Map rawKvp) throws Exception {
        return kvp.get("lockId");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy