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

org.cassandraunit.model.SuperColumnModel Maven / Gradle / Ivy

package org.cassandraunit.model;

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

import org.cassandraunit.type.GenericType;

/**
 * 
 * @author Jeremy Sevellec
 * 
 */
public class SuperColumnModel {

	private GenericType name;
	private List columns = new ArrayList();

	public GenericType getName() {
		return name;
	}

	public void setName(GenericType name) {
		this.name = name;
	}

	public List getColumns() {
		return columns;
	}

	public void setColumns(List columns) {
		this.columns = columns;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy