com.nfbsoftware.ab.model.Course Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simple-ab Show documentation
Show all versions of simple-ab Show documentation
The NFB Software Simple-AB is a Java wrapper for the Academic Benchmarks API
package com.nfbsoftware.ab.model;
import java.io.Serializable;
/**
*
* @author brendanclemenzi
*/
public class Course implements Serializable
{
private static final long serialVersionUID = 1L;
private String m_guid;
private String m_descr;
public String getDescr()
{
return m_descr;
}
public void setDescr(String descr)
{
m_descr = descr;
}
public String getGuid()
{
return m_guid;
}
public void setGuid(String guid)
{
m_guid = guid;
}
}