460461462463464465466467
persist( ft, xml ); } private void removeFeatureType( FeatureTypeInfo ft ) throws IOException { LOGGER.fine( "Removing feature type " + ft.getName() ); Resource directory = dd.get(ft); rmRes(directory); }
467468469470471472473474475
} //coverage stores private void addCoverageStore( CoverageStoreInfo cs ) throws IOException { LOGGER.fine( "Persisting coverage store " + cs.getName() ); Resource xml = dd.config(cs); ensureParent(xml); persist( cs, xml ); }
474475476477478479480481
persist( cs, xml ); } private void modifyCoverageStore( CoverageStoreInfo cs ) throws IOException { LOGGER.fine( "Persisting coverage store " + cs.getName() ); Resource r = dd.config(cs); persist( cs, r ); }
480481482483484485486487
persist( cs, r ); } private void removeCoverageStore( CoverageStoreInfo cs ) throws IOException { LOGGER.fine( "Removing coverage store " + cs.getName() ); Resource r = dd.get(cs); rmRes(r); }
487488489490491492493494495
} //coverages private void addCoverage( CoverageInfo c ) throws IOException { LOGGER.fine( "Persisting coverage " + c.getName() ); Resource xml = dd.config(c); ensureParent(xml); persist( c, xml ); }
494495496497498499500501
persist( c, xml ); } private void modifyCoverage( CoverageInfo c ) throws IOException { LOGGER.fine( "Persisting coverage " + c.getName() ); Resource xml = dd.config(c); persist( c, xml ); }
500501502503504505506507
persist( c, xml ); } private void removeCoverage( CoverageInfo c ) throws IOException { LOGGER.fine( "Removing coverage " + c.getName() ); Resource directory = dd.get(c); rmRes(directory); }
507508509510511512513514515
} //wms stores private void addWMSStore( WMSStoreInfo wmss ) throws IOException { LOGGER.fine( "Persisting wms store " + wmss.getName() ); Resource xml = dd.config(wmss); ensureParent(xml); persist(wmss, xml); }
514515516517518519520521
persist(wmss, xml); } private void modifyWMSStore( WMSStoreInfo wmss ) throws IOException { LOGGER.fine( "Persisting wms store " + wmss.getName() ); Resource xml = dd.config(wmss); persist(wmss, xml); }
520521522523524525526527
persist(wmss, xml); } private void removeWMSStore( WMSStoreInfo wmss ) throws IOException { LOGGER.fine( "Removing datastore " + wmss.getName() ); Resource directory = dd.get(wmss); rmRes(directory); }