Project

General

Profile

1
package eu.dnetlib.data.graph.utils;
2

    
3
import java.util.Set;
4

    
5
import com.google.common.collect.Sets;
6

    
7
/**
8
 * Common static utility methods to manage the hbase tables
9
 *
10
 * @author claudio
11
 */
12
public class HBaseTableUtils {
13

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

    
16
	public Set<String> getColumns() {
17
		return cfs;
18
	}
19

    
20
}
(1-1/2)