/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package net.paulgray.lmsrest.discussion;
import java.util.Date;
import net.paulgray.lmsrest.course.Course;
/**
*
* @author pfgray
*/
public class DiscussionBoard {
protected String id;
protected String title;
protected String description;
protected Date lastEdited;
protected Boolean available;
protected Date endDate;
protected Course course;
public Boolean getAvailable() {
return available;
}
public void setAvailable(Boolean available) {
this.available = available;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public Date getStartDate() {
return lastEdited;
}
public void setStartDate(Date startDate) {
this.lastEdited = startDate;
}
public Date getEndDate() {
return endDate;
}
public void setEndDate(Date endDate) {
this.endDate = endDate;
}
public Date getLastEdited() {
return lastEdited;
}
public void setLastEdited(Date lastEdited) {
this.lastEdited = lastEdited;
}
public Course getCourse() {
return course;
}
public void setCourse(Course course) {
this.course = course;
}
}