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

com.lordofthejars.nosqlunit.hbase.model.ParsedColumnFamilyModel Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package com.lordofthejars.nosqlunit.hbase.model;

import java.util.ArrayList;
import java.util.List;

public class ParsedColumnFamilyModel {

	private String name;
	private List rows = new ArrayList();
	
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public List getRows() {
		return rows;
	}
	public void setRows(List rows) {
		this.rows = rows;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy