Package org.geoserver.script

Examples of org.geoserver.script.ScriptFileWatcher


    /** watcher for changes */
    ScriptFileWatcher watcher;

    public ScriptFunction(File file, ScriptManager scriptMgr) {
        watcher = new ScriptFileWatcher(file, scriptMgr);
        hook = scriptMgr.lookupFilterHook(file);
    }
View Full Code Here


    ScriptProcess(Name name, File script, ScriptManager scriptMgr) {
        this.name = name;
        this.scriptMgr = scriptMgr;

        hook = scriptMgr.lookupWpsHook(script);
        fw = new ScriptFileWatcher(script, scriptMgr);
    }
View Full Code Here

    WfsTxHook hook;
    ScriptFileWatcher fw;

    public ScriptTxDelegate(File script, ScriptManager scriptMgr) {
        this.hook = scriptMgr.lookupWfsTxHook(script);
        this.fw = new ScriptFileWatcher(script, scriptMgr);
    }
View Full Code Here

TOP

Related Classes of org.geoserver.script.ScriptFileWatcher

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.