com.lordofthejars.nosqlunit.hbase.model.ParsedColumnFamilyModel Maven / Gradle / Ivy
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