Examples of CatalogRemoveEvent


Examples of org.geoserver.catalog.event.CatalogRemoveEvent

    if (event == null) {
      throw new NullArgumentException("Incoming object is null");
    }
    try {
      if (event instanceof CatalogRemoveEvent) {
        final CatalogRemoveEvent removeEv = ((CatalogRemoveEvent) event);

        // get the source
        final CatalogInfo info = removeEv.getSource();

        // disable the producer to avoid recursion
        producer.disable();
        // remove the selected CatalogInfo
        JMSCatalogRemoveEventHandler.remove(catalog, info, getProperties());
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.