com.nfbsoftware.ab.model.Authority 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
The newest version!
package com.nfbsoftware.ab.model;
import java.io.Serializable;
/**
*
* @author brendanclemenzi
*/
public class Authority implements Serializable
{
private static final long serialVersionUID = 1L;
private String m_guid;
private String m_descr;
private String m_code;
public String getGuid()
{
return m_guid;
}
public void setGuid(String guid)
{
m_guid = guid;
}
public String getDescr()
{
return m_descr;
}
public void setDescr(String descr)
{
m_descr = descr;
}
public String getCode()
{
return m_code;
}
public void setCode(String code)
{
m_code = code;
}
}