Project

General

Profile

1
package eu.dnetlib.domain.data;
2

    
3
import eu.dnetlib.domain.EPR;
4

    
5

    
6
public class SuggestiveResult {
7
	
8
	private EPR epr = null;
9
	private String alternativeTerm = null;
10
	private boolean autofollow = false;
11
	
12
	public EPR getEpr() {
13
		return epr;
14
	}
15
	public void setEpr(EPR epr) {
16
		this.epr = epr;
17
	}
18
	public String getAlternativeTerm() {
19
		return alternativeTerm;
20
	}
21
	public void setAlternativeTerm(String alternativeTerm) {
22
		this.alternativeTerm = alternativeTerm;
23
	}
24
	public boolean isAutofollow() {
25
		return autofollow;
26
	}
27
	public void setAutofollow(boolean autofollow) {
28
		this.autofollow = autofollow;
29
	}
30

    
31
}
(22-22/22)