summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/trunk/tutorials/travelsample/contributions/usingsca/src/main/java/com/tuscanyscatours/using/impl/CustomerImpl.java
diff options
context:
space:
mode:
authornash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-05-14 14:29:13 +0000
committernash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-05-14 14:29:13 +0000
commit9c521343d7ae285855510c2f882d3953d90546fc (patch)
tree285b427e3c5610a697a6600509ddae91d5d77c2b /sca-java-1.x/trunk/tutorials/travelsample/contributions/usingsca/src/main/java/com/tuscanyscatours/using/impl/CustomerImpl.java
parent047e4967d37324d0ff84cfe95b88c418e6496dcf (diff)
Rename com.tuscanyscatours.using package to com.tuscanyscatours.usingsca
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@944283 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-1.x/trunk/tutorials/travelsample/contributions/usingsca/src/main/java/com/tuscanyscatours/using/impl/CustomerImpl.java')
-rw-r--r--sca-java-1.x/trunk/tutorials/travelsample/contributions/usingsca/src/main/java/com/tuscanyscatours/using/impl/CustomerImpl.java47
1 files changed, 0 insertions, 47 deletions
diff --git a/sca-java-1.x/trunk/tutorials/travelsample/contributions/usingsca/src/main/java/com/tuscanyscatours/using/impl/CustomerImpl.java b/sca-java-1.x/trunk/tutorials/travelsample/contributions/usingsca/src/main/java/com/tuscanyscatours/using/impl/CustomerImpl.java
deleted file mode 100644
index 84ca6c7593..0000000000
--- a/sca-java-1.x/trunk/tutorials/travelsample/contributions/usingsca/src/main/java/com/tuscanyscatours/using/impl/CustomerImpl.java
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package com.tuscanyscatours.using.impl;
-
-import org.osoa.sca.annotations.Property;
-import com.tuscanyscatours.Address;
-import com.tuscanyscatours.BillingAddress;
-import com.tuscanyscatours.CustomerInfo;
-
-public class CustomerImpl implements CustomerInfo {
-
- @Property
- protected BillingAddress billingAddress;
-
- @Property
- protected Address deliveryAddress;
-
- public String getBillingAddress() {
- return billingAddress.getStreet() + ", " +
- billingAddress.getCity() + ", " +
- billingAddress.getState() + " " +
- billingAddress.getZip();
- }
-
- public String getDeliveryAddress() {
- return deliveryAddress.getStreet() + ", " +
- deliveryAddress.getCity() + ", " +
- deliveryAddress.getState() + " " +
- deliveryAddress.getZip();
- }
-}