Examples of delKeyColumn()


Examples of it.geosolutions.geoserver.rest.encoder.metadata.virtualtable.GSVirtualTableEncoder.delKeyColumn()

    Assert.assertEquals("default_value2",
        p2.getChildText(VTParameter.defaultValue.toString()));
    Assert.assertEquals("^[\\w\\d\\s]+$",
        p2.getChildText(VTParameter.regexpValidator.toString()));

    vte.delKeyColumn("id");
    Assert.assertNull(vte.getRoot().getChildText("keyColumn"));
    Assert.assertEquals("mysqlview", vte.getName());
    Assert.assertEquals(sql, vte.getSql());

    vtGeom.setType("Point");
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.