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 3/13/15.
7
 */
8
public class Publisher extends GoldBean implements IsSerializable {
9

    
10
	private String name;
11
	private String email;
12
	private Person contact;
13
    private float APC;
14
    private Currency currency;
15
	private float discount;
16
    private BankAccount bankAccount;
17
	private String source;
18

    
19
	public Publisher(String id) {
20
		super(id);
21
	}
22

    
23
    public Publisher() {
24
	}
25

    
26
    public Publisher(String id, String name, String email, Person contact, float APC, Currency currency, float discount, BankAccount bankAccount, String source) {
27
        this(id);
28
        this.name = name;
29
        this.email = email;
30
        this.contact = contact;
31
        this.APC = APC;
32
        this.currency = currency;
33
        this.discount = discount;
34
        this.bankAccount = bankAccount;
35
        this.source = source;
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 getEmail() {
47
		return email;
48
	}
49

    
50
	public void setEmail(String email) {
51
		this.email = email;
52
	}
53

    
54
	public Person getContact() {
55
		return contact;
56
	}
57

    
58
	public void setContact(Person contact) {
59
		this.contact = contact;
60
	}
61

    
62
	public float getDiscount() {
63
		return discount;
64
	}
65

    
66
	public void setDiscount(float discount) {
67
		this.discount = discount;
68
	}
69

    
70
    public float getAPC() {
71
        return APC;
72
    }
73

    
74
    public void setAPC(float APC) {
75
        this.APC = APC;
76
    }
77

    
78
    public Currency getCurrency() {
79
        return currency;
80
    }
81

    
82
    public void setCurrency(Currency currency) {
83
        this.currency = currency;
84
    }
85

    
86
    public String getSource() {
87
		return source;
88
	}
89

    
90
	public void setSource(String source) {
91
		this.source = source;
92
	}
93

    
94
    public BankAccount getBankAccount() {
95
        return bankAccount;
96
    }
97

    
98
    public void setBankAccount(BankAccount bankAccount) {
99
        this.bankAccount = bankAccount;
100
    }
101
}
(26-26/36)