Subversion Repositories bacoAlunos

Rev

Blame | Compare with Previous | Last modification | View Log | RSS feed

package pt.estgp.estgweb.web.form.configuration;

import pt.estgp.estgweb.domain.DomainObjectFactory;
import pt.estgp.estgweb.domain.JobServiceTaskSchedulerImpl;
import pt.estgp.estgweb.web.form.ApplicationForm;

/**
 * @author Jorge Machado
 * @date 25/Jun/2008
 * @see pt.estgp.estgweb.web.form.courses
 */

public class SchedulleTasksForm extends ApplicationForm
{

    private JobServiceTaskSchedulerImpl jobScheduller;
    private 1.5.0/docs/api/java/lang/String.html">String id;




    public SchedulleTasksForm()
    {

    }

    public JobServiceTaskSchedulerImpl getDirectory()
    {
        if(jobScheduller == null)
            jobScheduller = DomainObjectFactory.createJobServiceTaskSchedulerImpl();
        return jobScheduller;
    }

    public void setJobScheduller(JobServiceTaskSchedulerImpl jobScheduller) {
        this.jobScheduller = jobScheduller;
    }

    public 1.5.0/docs/api/java/lang/String.html">String getId() {
        return id;
    }

    public void setId(1.5.0/docs/api/java/lang/String.html">String id) {
        this.id = id;
    }


}