package info.oais.implementation.infomodel;

import info.oais.interfaces.infomodel.*;

/**
 * A classification of RepInfo [TBD] to facilitate locating the kind of RepInfo
 * wanted.
 * @author David
 * @version 1.0
 * @since 06-Sep-2021 15:59:46
 */
public class RepInfoCategoryImpl1 implements RepInfoCategory {
	
	/**
	 * Internal value for the String for the category.
	 */
	String m_Category = null;
	
	/**Returns the category as a String.
	 * 
	 * @return The category as a String.
	 */
	public String getCategory() {
		return m_Category;
	}
	
	/**
	 * Set the category as a String.
	 * 
	 * @param cat The category as a String.
	 */
	public void setCategory(String cat) {
		m_Category = cat;
	}

}