Package org.geoserver.cluster.impl.handlers

Examples of org.geoserver.cluster.impl.handlers.DocumentFile


                    throw new IllegalStateException("Unable to find style for event: "+sInfo.toString());
                }

                // transmit the file
                jmsPublisher.publish(getTopic(), getJmsTemplate(), options,
                        new DocumentFile(styleFile));
            }

            // propagate the event
            jmsPublisher.publish(getTopic(), getJmsTemplate(), options, event);
        } catch (Exception e) {
View Full Code Here


                  styleFile =  new File(loader.getBaseDirectory().getCanonicalPath(),
                      styleFileName);
                }
               
                // publish the style xml document
                jmsPublisher.publish(getTopic(), getJmsTemplate(), options, new DocumentFile(
                        styleFile));
            }

            // propagate the event
            jmsPublisher.publish(getTopic(), getJmsTemplate(), options, event);
View Full Code Here

TOP

Related Classes of org.geoserver.cluster.impl.handlers.DocumentFile

Copyright © 2018 www.massapicom. 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.