Package com.opensymphony.async.model

Examples of com.opensymphony.async.model.Run


    public String execute() throws Exception {
        experiment = new Experiment();
        for (int i = 0; i < numRuns; i++) {
            Thread.sleep(1000);
            Run run = new Run();
            experiment.addRun(run);
        }
        experiment.setEndDate(new Date());
        experimentDao.save(experiment);
        return SUCCESS;
View Full Code Here

TOP

Related Classes of com.opensymphony.async.model.Run

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.