Examples of CatalogEvent


Examples of org.geoserver.catalog.event.CatalogEvent

  @Override
  public CatalogEvent deserialize(String s) throws Exception {
   
    final Object source= xstream.fromXML(s);
    if (source instanceof CatalogEvent) {
      final CatalogEvent ev = (CatalogEvent) source;
      if (LOGGER.isLoggable(Level.FINE)) {
        final CatalogInfo info = ev.getSource();
        LOGGER.fine("Incoming message event of type CatalogEvent: "
            + info.getId());
      }
      return ev;
    } else {
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.