summaryrefslogtreecommitdiffstats
path: root/Master/Reference Architectures and Patterns/EJB 3.0 Code/Gerald Examples/src/examples/shop/impl/entity/Customer.java
blob: c9864365b8b8517ef809b6c2ef736f994e1c68de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
package examples.shop.impl.entity;

import javax.persistence.Entity;
import javax.persistence.Id;

/**
 * This entity represents customer details.
 */
@Entity
public class Customer implements java.io.Serializable {

    private String customerID;

    private String name;

    private String password;

    private String address;
    
    private double discount;

    /**
     * Returns the Id of the customer
     */
    @Id
    public String getCustomerID() {
        return customerID;
    }

    /**
     * Sets the id of the customer
     */
    public void setCustomerID(String customerId) {
        this.customerID = customerId;
    }
    /**
     * Returns the name of the customer
     */
    public String getName() {
        return name;
    }

    /**
     * Sets the name of the customer
     */
    public void setName(String name) {
        this.name = name;
    }

    /**
     * Returns the password of the customer
     */
    public String getPassword() {
        return password;
    }

    /**
     * Sets the password of the customer
     */
    public void setPassword(String password) {
        this.password = password;
    }

    /**
     * Returns the address of the customer
     */
    public String getAddress() {
        return address;
    }

    /**
     * Sets the address of the customer
     */
    public void setAddress(String address) {
        this.address = address;
    }

    public double getDiscount() {
        return discount;
    }
    
    public void setDiscount(double discount) {
        this.discount = discount;
    }
    
    public Customer() {
    }

    /**
     * Called when new data is created.
     *
     * We need to initialize our Bean's state with the parameters
     * passed from the client by calling our own abstract set
     * methods.  The Container can then inspect our Bean and
     * INSERT the corresponding database entries.
     */
    public void init(String id, String name, String password, String address) {
        setCustomerID(id);
        setName(name);
        setAddress(address);
        setPassword(password);
    }

}