summaryrefslogtreecommitdiffstats
path: root/sandbox/lresende/sca/samples/store-catalog-appengine-webapp/src/services/Item.java
blob: 65aaa53224df5853e8ea47584e9c78b434dada40 (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
package services;

import java.io.Serializable;

public class Item implements Serializable {
    private static final long serialVersionUID = -5847326138627338217L;

    private String name;
    private String price;

    public Item() {
    }

    public Item(String name, String price) {
        this.name = name;
        this.price = price;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getPrice() {
        return price;
    }

    public void setPrice(String price) {
        this.price = price;
    }
}