summaryrefslogtreecommitdiffstats
path: root/sandbox/sca-cloud-tutorial/store-appengine-webapp/src/services/Item.java
diff options
context:
space:
mode:
authorlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-10-16 02:38:41 +0000
committerlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-10-16 02:38:41 +0000
commitedaa23b27bef36d1de03779baa3883c75ce51adc (patch)
treef9349ced5e094577f120a51019cd1ac1a5b89821 /sandbox/sca-cloud-tutorial/store-appengine-webapp/src/services/Item.java
parent93815891615a5aa48d5b11e7b3902d077222bd30 (diff)
Moving cloud store sample to cloud tutorial sandbox
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@825743 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/sca-cloud-tutorial/store-appengine-webapp/src/services/Item.java')
-rw-r--r--sandbox/sca-cloud-tutorial/store-appengine-webapp/src/services/Item.java34
1 files changed, 34 insertions, 0 deletions
diff --git a/sandbox/sca-cloud-tutorial/store-appengine-webapp/src/services/Item.java b/sandbox/sca-cloud-tutorial/store-appengine-webapp/src/services/Item.java
new file mode 100644
index 0000000000..65aaa53224
--- /dev/null
+++ b/sandbox/sca-cloud-tutorial/store-appengine-webapp/src/services/Item.java
@@ -0,0 +1,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;
+ }
+}