Data Transfer Object used to represent GeoServer Catalog information.
Represents an instance of the catalog.xml file in the configuration of the
server, along with associated configuration files for the feature types.
Data Transfer object are used to communicate between the GeoServer
application and its configuration and persistent layers. As such the class
is final - to allow for its future use as an on-the-wire message.
Example:
DataDTO dDto = new DataDTO();
Map m = new HashMap();
NameSpaceInfoDTO ns = new NameSpaceInfoDTO();
ns.setUri("dzwiers.refractions.net");
m.put("nsDave",ns);
dDto.setNameSpaces(m);
ns = new NameSpaceInfoDTO();
ns.setUri("jgarnett.refractions.net");
ns.setDefault(true);
dDto.addNameSpace("nsJody"ns);
dDto.setDefaultNameSpace(ns);
...
author: dzwiers, Refractions Research, Inc. author: $Author: Alessio Fabiani (alessio.fabiani@gmail.com) $ (last modification) author: $Author: Simone Giannecchini (simboss1@gmail.com) $ (last modification) version: $Id: DataDTO.java 6326 2007-03-15 18:36:40Z jdeolive $ See Also: DataSource See Also: FeatureTypeInfo See Also: StyleConfig |