summaryrefslogtreecommitdiffstats
path: root/sandbox/travelsample/trip-contribution/src/scatours/trip/TripSearch.java
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2008-08-10 15:15:28 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2008-08-10 15:15:28 +0000
commit569c99b45bb0b3e6408c3af066110f4212da0688 (patch)
tree3a9479e87ab058ccbecdf8b5a2e5e0417404a1df /sandbox/travelsample/trip-contribution/src/scatours/trip/TripSearch.java
parentf21ed5242ed195c2bfc082765c9a5ec95a26348c (diff)
Separate the search into a travel component so that it is independent of the trip booking
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@684518 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sandbox/travelsample/travel-contribution/src/scatours/travel/TravelSearch.java (renamed from sandbox/travelsample/trip-contribution/src/scatours/trip/TripSearch.java)4
1 files changed, 2 insertions, 2 deletions
diff --git a/sandbox/travelsample/trip-contribution/src/scatours/trip/TripSearch.java b/sandbox/travelsample/travel-contribution/src/scatours/travel/TravelSearch.java
index 2bdeb0ccb4..d1aeed2906 100644
--- a/sandbox/travelsample/trip-contribution/src/scatours/trip/TripSearch.java
+++ b/sandbox/travelsample/travel-contribution/src/scatours/travel/TravelSearch.java
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-package scatours.trip;
+package scatours.travel;
import org.osoa.sca.annotations.Remotable;
@@ -27,6 +27,6 @@ import scatours.common.TripLeg;
* The Trip service interface
*/
@Remotable
-public interface TripSearch {
+public interface TravelSearch {
TripItem[] search(TripLeg tripLeg);
}