Package org.geoserver.script.wfs

Examples of org.geoserver.script.wfs.WfsTxHook


     * {@link ScriptPlugin#createWfsTxHook()}.
     * </p>
     */
    public WfsTxHook lookupWfsTxHook(File script) {
        ScriptPlugin p = plugin(script);
        return p != null ? p.createWfsTxHook() : new WfsTxHook(null);
    }
View Full Code Here


     * This default implementation returns a default implementation, subclass should override in
     * order to implement a custom hook.
     * </p>
     */
    public WfsTxHook createWfsTxHook() {
        return new WfsTxHook(this);
    }
View Full Code Here

TOP

Related Classes of org.geoserver.script.wfs.WfsTxHook

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.