From 2a25d97953be52451c073f8abc22034283c6d8c9 Mon Sep 17 00:00:00 2001 From: slaws Date: Sun, 10 Aug 2008 16:14:48 +0000 Subject: Start looking at a conversational interface on the Trip component git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@684543 13f79535-47bb-0310-9956-ffa450edef68 --- .../common-contribution/src/scatours/common/TripItem.java | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'sandbox/travelsample/common-contribution/src/scatours') diff --git a/sandbox/travelsample/common-contribution/src/scatours/common/TripItem.java b/sandbox/travelsample/common-contribution/src/scatours/common/TripItem.java index aac90c7bd5..311bb63b18 100644 --- a/sandbox/travelsample/common-contribution/src/scatours/common/TripItem.java +++ b/sandbox/travelsample/common-contribution/src/scatours/common/TripItem.java @@ -22,7 +22,8 @@ package scatours.common; public class TripItem { - private String id; + private String id; + private String tripId; private String type; private String name; private String description; @@ -37,6 +38,7 @@ public class TripItem { } public TripItem(String id, + String tripId, String type, String name, String description, @@ -47,6 +49,7 @@ public class TripItem { String currency, String link) { this.id = id; + this.tripId = tripId; this.type = type; this.name = name; this.description = description; @@ -66,6 +69,14 @@ public class TripItem { this.id = id; } + public String getTripId() { + return tripId; + } + + public void setTripId(String tripId) { + this.tripId = tripId; + } + public String getType() { return type; } -- cgit v1.2.3