Examples of LockRequest


Examples of org.vfny.geoserver.wfs.requests.LockRequest

    public void testKVP3() throws Exception {
        String testRequest = "VERSION=1.0.0&" + "REQUEST=lockFEATURE&"
            + "SERVICE=WFS&" + "TYPENAME=rail,roads";

        // make base comparison objects
        LockRequest baseRequest = new LockRequest();
        baseRequest.addLock("rail", null);
        baseRequest.addLock("roads", null);

        // run test
        assertTrue(runKvpTest(baseRequest, testRequest, true));
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.