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

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

There is a newer version: 4.3.1.0
Show newest version
package org.cassandraunit.model;

import org.cassandraunit.type.GenericType;

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

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

    private GenericType key;
    private List superColumns = new ArrayList();
    private List columns = new ArrayList();

    public GenericType getKey() {
        return key;
    }

    public void setKey(GenericType key) {
        this.key = key;
    }

    public List getSuperColumns() {
        return superColumns;
    }

    public void setSuperColumns(List superColumns) {
        this.superColumns = superColumns;
    }

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

    public List getColumns() {
        return columns;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy