Project

General

Profile

1
package eu.dnetlib.goldoa.domain;
2

    
3
import java.io.Serializable;
4

    
5
/**
6
 * Created by antleb on 3/13/15.
7
 */
8
public class Publisher implements Serializable {
9
	private String id;
10
	private String name;
11
	private String email;
12
	private Person contact;
13
    private float APC;
14
	private float discount;
15
	private String source;
16

    
17
	public Publisher(String id) {
18
		this.id = id;
19
	}
20

    
21
    public Publisher(String id, String name, String email, Person contact, float APC, float discount, String source) {
22
        this.id = id;
23
        this.name = name;
24
        this.email = email;
25
        this.contact = contact;
26
        this.APC = APC;
27
        this.discount = discount;
28
        this.source = source;
29
    }
30

    
31
    public Publisher() {
32
	}
33

    
34
	public String getId() {
35
		return id;
36
	}
37

    
38
	public void setId(String id) {
39
		this.id = id;
40
	}
41

    
42
	public String getName() {
43
		return name;
44
	}
45

    
46
	public void setName(String name) {
47
		this.name = name;
48
	}
49

    
50
	public String getEmail() {
51
		return email;
52
	}
53

    
54
	public void setEmail(String email) {
55
		this.email = email;
56
	}
57

    
58
	public Person getContact() {
59
		return contact;
60
	}
61

    
62
	public void setContact(Person contact) {
63
		this.contact = contact;
64
	}
65

    
66
	public float getDiscount() {
67
		return discount;
68
	}
69

    
70
	public void setDiscount(float discount) {
71
		this.discount = discount;
72
	}
73

    
74
    public float getAPC() {
75
        return APC;
76
    }
77

    
78
    public void setAPC(float APC) {
79
        this.APC = APC;
80
    }
81

    
82
    public String getSource() {
83
		return source;
84
	}
85

    
86
	public void setSource(String source) {
87
		this.source = source;
88
	}
89
}
(16-16/19)