summaryrefslogtreecommitdiffstats
path: root/tags/java/sca/0.91-rc1-incubating/demos/bigbank-stockquote/src/main
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2008-08-11 09:06:51 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2008-08-11 09:06:51 +0000
commita0526931d542769a999480c1c9ff45694e07c961 (patch)
treedb6d6cf75edc28c4397568be1c990a5d1b804a8e /tags/java/sca/0.91-rc1-incubating/demos/bigbank-stockquote/src/main
parent1b96a45103d328aaaf9470cbf01eeff38b657ff5 (diff)
Remove old RC tag
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@684685 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--tags/java/sca/0.91-rc1-incubating/demos/bigbank-stockquote/src/main/java/stockquote/StockQuoteImpl.java38
-rw-r--r--tags/java/sca/0.91-rc1-incubating/demos/bigbank-stockquote/src/main/java/stockquote/StockQuoteService.java33
-rw-r--r--tags/java/sca/0.91-rc1-incubating/demos/bigbank-stockquote/src/main/java/stockquote/demo/StockQuoteServer.java42
-rw-r--r--tags/java/sca/0.91-rc1-incubating/demos/bigbank-stockquote/src/main/resources/StockQuote.composite33
-rw-r--r--tags/java/sca/0.91-rc1-incubating/demos/bigbank-stockquote/src/main/resources/wsdl/StockQuote.wsdl79
5 files changed, 0 insertions, 225 deletions
diff --git a/tags/java/sca/0.91-rc1-incubating/demos/bigbank-stockquote/src/main/java/stockquote/StockQuoteImpl.java b/tags/java/sca/0.91-rc1-incubating/demos/bigbank-stockquote/src/main/java/stockquote/StockQuoteImpl.java
deleted file mode 100644
index dfe15f6cda..0000000000
--- a/tags/java/sca/0.91-rc1-incubating/demos/bigbank-stockquote/src/main/java/stockquote/StockQuoteImpl.java
+++ /dev/null
@@ -1,38 +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 stockquote;
-
-import org.osoa.sca.annotations.Service;
-
-/**
- * This class implements the HelloWorld service.
- */
-@Service(StockQuoteService.class)
-public class StockQuoteImpl implements StockQuoteService {
-
- public double getQuote(String symbol) {
- double price = 104.0 + Math.random();
- price = ((int)(price * 100)) / 100.0;
-
- System.out.println("Getting stock quote for: " + symbol + ", value: "+ price);
-
- return price;
- }
-
-}
diff --git a/tags/java/sca/0.91-rc1-incubating/demos/bigbank-stockquote/src/main/java/stockquote/StockQuoteService.java b/tags/java/sca/0.91-rc1-incubating/demos/bigbank-stockquote/src/main/java/stockquote/StockQuoteService.java
deleted file mode 100644
index 1607344788..0000000000
--- a/tags/java/sca/0.91-rc1-incubating/demos/bigbank-stockquote/src/main/java/stockquote/StockQuoteService.java
+++ /dev/null
@@ -1,33 +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 stockquote;
-
-import org.osoa.sca.annotations.Remotable;
-import org.osoa.sca.annotations.Service;
-
-/**
- * This is the business interface of the StockQuote service.
- */
-@Remotable
-@Service
-public interface StockQuoteService {
-
- public double getQuote(String symbol);
-}
-
diff --git a/tags/java/sca/0.91-rc1-incubating/demos/bigbank-stockquote/src/main/java/stockquote/demo/StockQuoteServer.java b/tags/java/sca/0.91-rc1-incubating/demos/bigbank-stockquote/src/main/java/stockquote/demo/StockQuoteServer.java
deleted file mode 100644
index 04ed762602..0000000000
--- a/tags/java/sca/0.91-rc1-incubating/demos/bigbank-stockquote/src/main/java/stockquote/demo/StockQuoteServer.java
+++ /dev/null
@@ -1,42 +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 stockquote.demo;
-
-import org.apache.tuscany.sca.host.embedded.SCADomain;
-
-/**
- * This server program shows how to bootstrap SCA from a simple J2SE program
- * and start it which activates the StockQuote Web service endpoint.
- */
-public class StockQuoteServer {
-
- public static void main(String[] args) throws Exception {
-
- System.out.println("Starting the Sample SCA StockQuote Service...");
-
- SCADomain domain = SCADomain.newInstance("StockQuote.composite");
-
- System.out.println("Press Enter to Exit...");
- System.in.read();
-
- domain.close();
- System.out.println("Bye");
- }
-
-}
diff --git a/tags/java/sca/0.91-rc1-incubating/demos/bigbank-stockquote/src/main/resources/StockQuote.composite b/tags/java/sca/0.91-rc1-incubating/demos/bigbank-stockquote/src/main/resources/StockQuote.composite
deleted file mode 100644
index 1a99e19302..0000000000
--- a/tags/java/sca/0.91-rc1-incubating/demos/bigbank-stockquote/src/main/resources/StockQuote.composite
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- * 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
- * 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.
--->
-<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
- targetNamespace="http://stockquote"
- xmlns:hw="http://stockquote"
- name="StockQuote">
-
- <service name="StockQuoteWebService" promote="StockQuoteServiceComponent">
- <interface.java interface="stockquote.StockQuoteService" />
- <binding.ws wsdlElement="http://stockquote#wsdl.port(StockQuoteService/StockQuoteSoapPort)"/>
- </service>
-
- <component name="StockQuoteServiceComponent">
- <implementation.java class="stockquote.StockQuoteImpl" />
- </component>
-
-</composite>
diff --git a/tags/java/sca/0.91-rc1-incubating/demos/bigbank-stockquote/src/main/resources/wsdl/StockQuote.wsdl b/tags/java/sca/0.91-rc1-incubating/demos/bigbank-stockquote/src/main/resources/wsdl/StockQuote.wsdl
deleted file mode 100644
index 400191d82f..0000000000
--- a/tags/java/sca/0.91-rc1-incubating/demos/bigbank-stockquote/src/main/resources/wsdl/StockQuote.wsdl
+++ /dev/null
@@ -1,79 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- * 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.
--->
-<wsdl:definitions targetNamespace="http://stockquote" xmlns:tns="http://stockquote" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
- name="stockquote">
-
- <wsdl:types>
- <schema elementFormDefault="qualified" targetNamespace="http://stockquote" xmlns="http://www.w3.org/2001/XMLSchema">
-
- <element name="getQuote">
- <complexType>
- <sequence>
- <element name="name" type="xsd:string"/>
- </sequence>
- </complexType>
- </element>
-
- <element name="getQuoteResponse">
- <complexType>
- <sequence>
- <element name="getQuoteReturn" type="xsd:double"/>
- </sequence>
- </complexType>
- </element>
-
- </schema>
- </wsdl:types>
-
- <wsdl:message name="getQuoteRequest">
- <wsdl:part element="tns:getQuote" name="parameters"/>
- </wsdl:message>
-
- <wsdl:message name="getQuoteResponse">
- <wsdl:part element="tns:getQuoteResponse" name="parameters"/>
- </wsdl:message>
-
- <wsdl:portType name="StockQuote">
- <wsdl:operation name="getQuote">
- <wsdl:input message="tns:getQuoteRequest" name="getQuoteRequest"/>
- <wsdl:output message="tns:getQuoteResponse" name="getQuoteResponse"/>
- </wsdl:operation>
- </wsdl:portType>
-
- <wsdl:binding name="StockQuoteSoapBinding" type="tns:StockQuote">
- <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
- <wsdl:operation name="getQuote">
- <wsdlsoap:operation soapAction=""/>
- <wsdl:input name="getQuoteRequest">
- <wsdlsoap:body use="literal"/>
- </wsdl:input>
- <wsdl:output name="getQuoteResponse">
- <wsdlsoap:body use="literal"/>
- </wsdl:output>
- </wsdl:operation>
- </wsdl:binding>
-
- <wsdl:service name="StockQuoteService">
- <wsdl:port binding="tns:StockQuoteSoapBinding" name="StockQuoteSoapPort">
- <wsdlsoap:address location="http://localhost:8081/services/StockQuoteWebService"/>
- </wsdl:port>
- </wsdl:service>
-
-</wsdl:definitions>