Project

General

Profile

1
package eu.dnetlib.enabling.datasources.common;
2

    
3
public class BrowseTermImpl implements BrowseTerm {
4

    
5
	private String term;
6
	private long total;
7

    
8
	public BrowseTermImpl() {}
9

    
10
	public BrowseTermImpl(final String term, final int total) {
11
		this.term = term;
12
		this.total = total;
13
	}
14

    
15
	public String getTerm() {
16
		return term;
17
	}
18

    
19
	public void setTerm(final String term) {
20
		this.term = term;
21
	}
22

    
23
	public long getTotal() {
24
		return total;
25
	}
26

    
27
	public void setTotal(final long total) {
28
		this.total = total;
29
	}
30
}
(9-9/18)