wfs.setGeoServer(config);
config.add(wfs);
}
public static void createWCS(GeoServerInfo geoserver, GeoServer config) {
WCSInfoImpl wcs = new WCSInfoImpl();
wcs.setId("wcs");
wcs.setName("wcs");
wcs.setTitle("Default WCS");
wcs.setEnabled(true);
wcs.setGeoServer(config);
List<String> exceptionFormats = new ArrayList<String>();
exceptionFormats.add("application/vnd.ogc.se_xml");
wcs.setExceptionFormats(exceptionFormats);
config.add(wcs);
}