Project

General

Profile

1
package eu.dnetlib.data.collector.plugins.datasets;
2

    
3
import java.util.HashMap;
4
import java.util.Map;
5

    
6
public class QueryField {
7

    
8
	private Map<String, String> term;
9

    
10
	public QueryField() {
11
		setTerm(new HashMap<String, String>());
12
	}
13

    
14
	/**
15
	 * @return the term
16
	 */
17
	public Map<String, String> getTerm() {
18
		return term;
19
	}
20

    
21
	/**
22
	 * @param term
23
	 *            the term to set
24
	 */
25
	public void setTerm(final Map<String, String> term) {
26
		this.term = term;
27
	}
28

    
29
}
(7-7/8)