Examples of DescribeFeatureTypeType


Examples of net.opengis.wfs20.DescribeFeatureTypeType

            "<TypeName>myns:TreesA_1M</TypeName>" +
            "<TypeName>myns:RoadL_1M</TypeName>" +
         "</DescribeFeatureType>";
        buildDocument(xml);
       
        DescribeFeatureTypeType dft = (DescribeFeatureTypeType) parse();
        assertNotNull(dft);
       
        assertEquals(2, dft.getTypeName().size());
        assertEquals(new QName("http://www.myserver.com/myns", "TreesA_1M"), dft.getTypeName().get(0));
        assertEquals(new QName("http://www.myserver.com/myns", "RoadL_1M"), dft.getTypeName().get(1));
    }
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.