summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/tags/0.91-incubating/demos/bigbank-account/src/main/java/bigbank/account
diff options
context:
space:
mode:
authorlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-11-11 23:26:33 +0000
committerlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-11-11 23:26:33 +0000
commita40e527938d76ba71f211da7e327adb50384ba69 (patch)
treecb8f99f1727122b040a3f0fbb6649292b6a74302 /sca-java-1.x/tags/0.91-incubating/demos/bigbank-account/src/main/java/bigbank/account
parent968721109881107520d7aefa91d7fcc0519d7739 (diff)
Moving 1.x tags
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@835157 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-1.x/tags/0.91-incubating/demos/bigbank-account/src/main/java/bigbank/account')
-rw-r--r--sca-java-1.x/tags/0.91-incubating/demos/bigbank-account/src/main/java/bigbank/account/AccountService.java34
-rw-r--r--sca-java-1.x/tags/0.91-incubating/demos/bigbank-account/src/main/java/bigbank/account/AccountServiceImpl.java85
-rw-r--r--sca-java-1.x/tags/0.91-incubating/demos/bigbank-account/src/main/java/bigbank/account/feed/AccountFeedImpl.java68
3 files changed, 187 insertions, 0 deletions
diff --git a/sca-java-1.x/tags/0.91-incubating/demos/bigbank-account/src/main/java/bigbank/account/AccountService.java b/sca-java-1.x/tags/0.91-incubating/demos/bigbank-account/src/main/java/bigbank/account/AccountService.java
new file mode 100644
index 0000000000..abe65cbbe0
--- /dev/null
+++ b/sca-java-1.x/tags/0.91-incubating/demos/bigbank-account/src/main/java/bigbank/account/AccountService.java
@@ -0,0 +1,34 @@
+/*
+ * 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 bigbank.account;
+
+import org.osoa.sca.annotations.Remotable;
+import org.osoa.sca.annotations.Service;
+
+/**
+ * @version $$Rev$$ $$Date$$
+ */
+
+@Remotable
+@Service
+public interface AccountService {
+
+ public double getAccountReport(String customerID);
+
+}
diff --git a/sca-java-1.x/tags/0.91-incubating/demos/bigbank-account/src/main/java/bigbank/account/AccountServiceImpl.java b/sca-java-1.x/tags/0.91-incubating/demos/bigbank-account/src/main/java/bigbank/account/AccountServiceImpl.java
new file mode 100644
index 0000000000..4f1afee204
--- /dev/null
+++ b/sca-java-1.x/tags/0.91-incubating/demos/bigbank-account/src/main/java/bigbank/account/AccountServiceImpl.java
@@ -0,0 +1,85 @@
+/*
+ * 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 bigbank.account;
+
+import org.osoa.sca.annotations.Property;
+import org.osoa.sca.annotations.Reference;
+import org.osoa.sca.annotations.Service;
+
+import stockquote.StockQuoteService;
+import bigbank.accountdata.AccountDataService;
+import bigbank.accountdata.CheckingAccount;
+import bigbank.accountdata.SavingsAccount;
+import bigbank.accountdata.StockAccount;
+import calculator.CalculatorService;
+
+/**
+ * @version $$Rev$$ $$Date$$
+ */
+
+@Service(AccountService.class)
+public class AccountServiceImpl implements AccountService {
+
+ @Reference
+ protected AccountDataService accountDataService;
+
+ @Reference
+ protected StockQuoteService stockQuoteService;
+
+ @Reference
+ protected CalculatorService calculatorService;
+
+ @Property
+ protected String currency;
+
+ public double getAccountReport(String customerID) {
+
+ // Get the checking, savings and stock accounts from the AccountData
+ // service component
+ CheckingAccount checking = accountDataService.getCheckingAccount(customerID);
+ System.out.println("Checking account: " + checking);
+
+ SavingsAccount savings = accountDataService.getSavingsAccount(customerID);
+ System.out.println("Savings account: " + savings);
+
+ StockAccount stock = accountDataService.getStockAccount(customerID);
+ System.out.println("Stock account: " + stock);
+
+ // Get the stock price in USD
+ double price = stockQuoteService.getQuote(stock.getSymbol());
+ System.out.println("Stock price for " + stock.getSymbol() + ": " + price);
+
+ // Convert to the configured currency
+ if (currency.equals("EURO")) {
+
+ // Use our fancy calculator service to convert to the target currency
+ price = calculatorService.multiply(price, 0.70);
+
+ System.out.println("Converted to " + currency + ": " + price);
+ }
+
+ // Calculate the value of the stock account
+ double stockValue = price * stock.getQuantity();
+
+ // Calculate the total balance of all accounts and return it
+ double balance = checking.getBalance() + savings.getBalance() + stockValue;
+
+ return balance;
+ }
+}
diff --git a/sca-java-1.x/tags/0.91-incubating/demos/bigbank-account/src/main/java/bigbank/account/feed/AccountFeedImpl.java b/sca-java-1.x/tags/0.91-incubating/demos/bigbank-account/src/main/java/bigbank/account/feed/AccountFeedImpl.java
new file mode 100644
index 0000000000..1df30580da
--- /dev/null
+++ b/sca-java-1.x/tags/0.91-incubating/demos/bigbank-account/src/main/java/bigbank/account/feed/AccountFeedImpl.java
@@ -0,0 +1,68 @@
+/*
+ * 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 bigbank.account.feed;
+
+import org.apache.tuscany.sca.binding.feed.Feed;
+import org.osoa.sca.annotations.Reference;
+import org.osoa.sca.annotations.Service;
+
+import bigbank.account.AccountService;
+
+import com.sun.syndication.feed.synd.SyndContent;
+import com.sun.syndication.feed.synd.SyndContentImpl;
+import com.sun.syndication.feed.synd.SyndEntry;
+import com.sun.syndication.feed.synd.SyndEntryImpl;
+import com.sun.syndication.feed.synd.SyndFeed;
+import com.sun.syndication.feed.synd.SyndFeedImpl;
+
+/**
+ * @version $$Rev$$ $$Date$$
+ */
+
+@Service(Feed.class)
+public class AccountFeedImpl implements Feed {
+
+ @Reference
+ protected AccountService accountService;
+
+ @SuppressWarnings("unchecked")
+ public SyndFeed get(String uri) {
+
+ // Get the account report for the specified customer ID
+ String customerID = uri.substring(uri.lastIndexOf('/')+1);
+ double balance = accountService.getAccountReport(customerID);
+ String value = Double.toString(balance);
+
+ // Create a new Feed
+ SyndFeed feed = new SyndFeedImpl();
+ feed.setTitle("Account Report Feed");
+ feed.setDescription("A sample Account Report feed");
+ feed.setAuthor("anonymous");
+ feed.setLink(uri);
+
+ SyndEntry entry = new SyndEntryImpl();
+ entry.setAuthor("anonymous");
+ SyndContent content = new SyndContentImpl();
+ content.setValue(value);
+ entry.setDescription(content);
+ feed.getEntries().add(entry);
+
+ return feed;
+ }
+}