JobSubmissionSessionBean.java from GridBlocks at Krugle
Show JobSubmissionSessionBean.java syntax highlighted
/*
* Copyright (c) 2005
* Helsinki Institute of Physics
* see LICENSE file for details
*
* JobSubmissionSessionBean.java
* Created on 27.6.2005
*/
package fi.hip.gb.portlet.beans;
import java.util.List;
import fi.hip.gb.portlet.jobs.Job;
/**
* Session information bean
*
* @author Antti Ahvenlampi
* @version $Id: JobSubmissionSessionBean.java 475 2005-08-15 14:14:04Z ahvenlam $
*/
public class JobSubmissionSessionBean {
private List services;
private Job job;
/**
* @return Returns the job.
*/
public Job getJob() {
return job;
}
/**
* @param job The job to set.
*/
public void setJob(Job job) {
this.job = job;
}
/**
* @return Returns the services.
*/
public List getServices() {
return services;
}
/**
* @param services The services to set.
*/
public void setServices(List services) {
this.services = services;
}
}
See more files for this project here