All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nfbsoftware.ab.model.Authority Maven / Gradle / Ivy

Go to download

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy