Project

General

Profile

1
package eu.dnetlib.goldoa.domain;
2

    
3
import com.google.gwt.user.client.rpc.IsSerializable;
4

    
5
/**
6
 * Created by antleb on 8/27/15.
7
 */
8
public class GoldBean implements IsSerializable {
9
	protected String id = null;
10
	private boolean fromDB = false;
11

    
12
	public GoldBean(String id) {
13
		this.id = id;
14
	}
15

    
16
	public GoldBean() {
17
	}
18

    
19
	public String getId() {
20
		return id;
21
	}
22

    
23
	public void setId(String id) {
24
		this.id = id;
25
	}
26

    
27
	public boolean isFromDB() {
28
		return fromDB;
29
	}
30

    
31
	public void setFromDB(boolean fromDB) {
32
		this.fromDB = fromDB;
33
	}
34
}
(11-11/36)