summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/samples/store-secure/src/main
diff options
context:
space:
mode:
authorlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-02-26 04:41:26 +0000
committerlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-02-26 04:41:26 +0000
commit750e2e19dddb236c49d458ff27c2ab50b1848a63 (patch)
tree95acb6f1b3b9d9e0b38c1dbd96227c70a039fd6f /branches/sca-java-1.x/samples/store-secure/src/main
parentccdb9264ce71a776d4bb1cbf66a4e3f5012b48fd (diff)
Adding support for enabling and configuring authentication for embedded http server using policy
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@748014 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'branches/sca-java-1.x/samples/store-secure/src/main')
-rw-r--r--branches/sca-java-1.x/samples/store-secure/src/main/java/launch/LaunchProtected.java34
-rw-r--r--branches/sca-java-1.x/samples/store-secure/src/main/resources/definitions.xml24
-rw-r--r--branches/sca-java-1.x/samples/store-secure/src/main/resources/store-protected.composite64
3 files changed, 103 insertions, 19 deletions
diff --git a/branches/sca-java-1.x/samples/store-secure/src/main/java/launch/LaunchProtected.java b/branches/sca-java-1.x/samples/store-secure/src/main/java/launch/LaunchProtected.java
new file mode 100644
index 0000000000..ffdf9db47b
--- /dev/null
+++ b/branches/sca-java-1.x/samples/store-secure/src/main/java/launch/LaunchProtected.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 launch;
+
+import org.apache.tuscany.sca.host.embedded.SCADomain;
+
+public class LaunchProtected {
+ public static void main(String[] args) throws Exception {
+ System.out.println("Starting ...");
+ SCADomain scaDomain = SCADomain.newInstance("store-protected.composite");
+ System.out.println("store.composite ready for big business !!!");
+ System.in.read();
+ System.out.println("Stopping ...");
+ scaDomain.close();
+ System.out.println();
+ }
+}
diff --git a/branches/sca-java-1.x/samples/store-secure/src/main/resources/definitions.xml b/branches/sca-java-1.x/samples/store-secure/src/main/resources/definitions.xml
index 0b1d409c7f..140c5fd1c5 100644
--- a/branches/sca-java-1.x/samples/store-secure/src/main/resources/definitions.xml
+++ b/branches/sca-java-1.x/samples/store-secure/src/main/resources/definitions.xml
@@ -27,27 +27,13 @@
<sca:policySet name="widgetBindingAuthenticationPolicySet"
provides="sca:authentication"
appliesTo="tuscany:binding.http">
- <tuscany:basicAuthentication>
- <tuscany:authorizedUsers>
- <tuscany:user name="user1" password="pwd1" role="admin"/>
- <tuscany:user name="user2" password="pwd2" role="user"/>
- <tuscany:user name="user3" password="pwd3" role="user"/>
- </tuscany:authorizedUsers>
- </tuscany:basicAuthentication>
+ <tuscany:authenticationConfiguration>
+ <tuscany:user username="admin" password="tuscany" roles="admin"/>
+ <tuscany:user username="user1" password="tuscany" roles="user"/>
+ <tuscany:user username="user2" password="tuscany" roles="user"/>
+ </tuscany:authenticationConfiguration>
</sca:policySet>
- <sca:policySet name="widgetServiceAuthenticationPolicySet"
- provides="sca:authentication"
- appliesTo="sca:service">
- <tuscany:basicAuthentication>
- <tuscany:authorizedUsers>
- <tuscany:user name="user1" password="pwd1" role="admin"/>
- <tuscany:user name="user2" password="pwd2" role="user"/>
- <tuscany:user name="user3" password="pwd3" role="user"/>
- </tuscany:authorizedUsers>
- </tuscany:basicAuthentication>
- </sca:policySet>
-
<sca:policySet name="widgetConfidentialityConfigurationPolicySet"
provides="sca:confidentiality"
appliesTo="tuscany:binding.http">
diff --git a/branches/sca-java-1.x/samples/store-secure/src/main/resources/store-protected.composite b/branches/sca-java-1.x/samples/store-secure/src/main/resources/store-protected.composite
new file mode 100644
index 0000000000..5619afd8d9
--- /dev/null
+++ b/branches/sca-java-1.x/samples/store-secure/src/main/resources/store-protected.composite
@@ -0,0 +1,64 @@
+<?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.
+-->
+<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
+ xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0"
+ targetNamespace="http://store"
+ name="store">
+
+ <component name="Store">
+ <t:implementation.widget location="uiservices/store.html"/>
+ <service name="Widget">
+ <t:binding.http uri="/store" requires="authentication"/>
+ </service>
+ <reference name="catalog" target="Catalog">
+ <t:binding.jsonrpc/>
+ </reference>
+ <reference name="shoppingCart" target="ShoppingCart/Cart">
+ <t:binding.atom/>
+ </reference>
+ <reference name="shoppingTotal" target="ShoppingCart/Total">
+ <t:binding.jsonrpc/>
+ </reference>
+ </component>
+
+ <component name="Catalog">
+ <implementation.java class="services.FruitsCatalogImpl"/>
+ <property name="currencyCode">USD</property>
+ <service name="Catalog">
+ <t:binding.jsonrpc/>
+ </service>
+ <reference name="currencyConverter" target="CurrencyConverter"/>
+ </component>
+
+ <component name="ShoppingCart">
+ <implementation.java class="services.ShoppingCartImpl"/>
+ <service name="Cart">
+ <t:binding.atom uri="/ShoppingCart/Cart"/>
+ </service>
+ <service name="Total">
+ <t:binding.jsonrpc/>
+ </service>
+ </component>
+
+ <component name="CurrencyConverter">
+ <implementation.java class="services.CurrencyConverterImpl"/>
+ </component>
+
+</composite>