com.nfbsoftware.ab.model.AbResource 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 AbResource implements Serializable
{
private static final long serialVersionUID = 1L;
private AbData m_data;
public AbData getData()
{
return m_data;
}
public void setData(AbData data)
{
m_data = data;
}
}