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

com.lordofthejars.nosqlunit.hbase.model.ParsedRowModel 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 ParsedRowModel {

	private String key;
	private List columns = new ArrayList();
	
	public String getKey() {
		return key;
	}
	public void setKey(String key) {
		this.key = key;
	}
	public List getColumns() {
		return columns;
	}
	public void setColumns(List columns) {
		this.columns = columns;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy