Project

General

Profile

1
package eu.dnetlib.goldoa.domain;
2

    
3
import java.io.Serializable;
4
import java.util.List;
5

    
6
/**
7
 * Created by antleb on 3/4/15.
8
 */
9
public class Organization implements Serializable {
10

    
11
	private String id;
12
	private String name;
13
	private String shortName;
14
	private List<Budget> budgets;
15

    
16
	public Organization() {
17
	}
18

    
19
	public Organization(String id, String name, String shortName, List<Budget> budgets) {
20
		this.id = id;
21
		this.name = name;
22
		this.shortName = shortName;
23
		this.budgets = budgets;
24
	}
25

    
26
	public Organization(String id) {
27
		this.id = id;
28
	}
29

    
30
	public String getId() {
31
		return id;
32
	}
33

    
34
	public void setId(String id) {
35
		this.id = id;
36
	}
37

    
38
	public String getName() {
39
		return name;
40
	}
41

    
42
	public void setName(String name) {
43
		this.name = name;
44
	}
45

    
46
	public String getShortName() {
47
		return shortName;
48
	}
49

    
50
	public void setShortName(String shortName) {
51
		this.shortName = shortName;
52
	}
53

    
54
	public List<Budget> getBudgets() {
55
		return budgets;
56
	}
57

    
58
	public void setBudgets(List<Budget> budgets) {
59
		this.budgets = budgets;
60
	}
61
}
(8-8/23)