package eu.dnetlib.data.graph.utils;

import java.util.Set;

import com.google.common.collect.Sets;

/**
 * Common static utility methods to manage the hbase tables
 *
 * @author claudio
 */
public class HBaseTableUtils {

	private static final Set<String> cfs = Sets.newHashSet("metadata", "rel");

	public Set<String> getColumns() {
		return cfs;
	}

}
