All Downloads are FREE. Search and download functionalities are using the official Maven repository.

au.net.causal.maven.plugins.boxdb.db.ScriptReaderExecution Maven / Gradle / Ivy

There is a newer version: 3.3
Show newest version
package au.net.causal.maven.plugins.boxdb.db;

import java.net.URL;
import java.util.ArrayList;
import java.util.List;

/**
 * Defines executions of script resources.
 */
public class ScriptReaderExecution extends ScriptExecutionBase
{
    private List scripts = new ArrayList<>();

    /**
     * @return list of URL resources that will be executed.
     */
    public List getScripts()
    {
        return scripts;
    }

    public void setScripts(List scripts)
    {
        this.scripts = scripts;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy