You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by sv...@apache.org on 2008/03/10 19:03:55 UTC

svn commit: r635621 - in /incubator/tuscany/java/sca/demos/bigbank-account/src/main/resources/META-INF: ./ services/

Author: svkrish
Date: Mon Mar 10 11:03:52 2008
New Revision: 635621

URL: http://svn.apache.org/viewvc?rev=635621&view=rev
Log:
splitting up the bigbank account related classes into a contribution of its own

Added:
    incubator/tuscany/java/sca/demos/bigbank-account/src/main/resources/META-INF/
    incubator/tuscany/java/sca/demos/bigbank-account/src/main/resources/META-INF/sca-contribution.xml   (with props)
    incubator/tuscany/java/sca/demos/bigbank-account/src/main/resources/META-INF/services/
    incubator/tuscany/java/sca/demos/bigbank-account/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.StAXArtifactProcessor
    incubator/tuscany/java/sca/demos/bigbank-account/src/main/resources/META-INF/services/org.apache.tuscany.sca.policy.util.PolicyHandler

Added: incubator/tuscany/java/sca/demos/bigbank-account/src/main/resources/META-INF/sca-contribution.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/demos/bigbank-account/src/main/resources/META-INF/sca-contribution.xml?rev=635621&view=auto
==============================================================================
--- incubator/tuscany/java/sca/demos/bigbank-account/src/main/resources/META-INF/sca-contribution.xml (added)
+++ incubator/tuscany/java/sca/demos/bigbank-account/src/main/resources/META-INF/sca-contribution.xml Mon Mar 10 11:03:52 2008
@@ -0,0 +1,42 @@
+<?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.    
+-->
+<contribution xmlns="http://www.osoa.org/xmlns/sca/1.0"
+    xmlns:sca="http://www.osoa.org/xmlns/sca/1.0"
+	targetNamespace="http://bigbank"
+    xmlns:bb="http://bigbank"
+    xmlns:bbck="http://bigbank/checkings"
+    xmlns:bbsv="http://bigbank/savings"
+    xmlns:bbst="http://bigbank/stock">
+
+   <deployable composite="bbck:CheckingsAccountDept"/>
+   <deployable composite="bbsv:SavingsAccountDept"/>
+   <deployable composite="bbst:StockAccountDept"/>
+
+   <export namespace="http://bigbank/checkings"/>
+   <export namespace="http://bigbank/savings"/>
+   <export namespace="http://bigbank/stock"/>
+   
+   <export.java package="bigbank.account.checking"/>
+   <export.java package="bigbank.account.savings"/>
+   <export.java package="bigbank.account.stock"/>
+   <export.java package="bigbank.account.security"/>
+   
+   <export.resource uri="definitions.xml"/>
+</contribution>
\ No newline at end of file

Propchange: incubator/tuscany/java/sca/demos/bigbank-account/src/main/resources/META-INF/sca-contribution.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/demos/bigbank-account/src/main/resources/META-INF/sca-contribution.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: incubator/tuscany/java/sca/demos/bigbank-account/src/main/resources/META-INF/sca-contribution.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: incubator/tuscany/java/sca/demos/bigbank-account/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.StAXArtifactProcessor
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/demos/bigbank-account/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.StAXArtifactProcessor?rev=635621&view=auto
==============================================================================
--- incubator/tuscany/java/sca/demos/bigbank-account/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.StAXArtifactProcessor (added)
+++ incubator/tuscany/java/sca/demos/bigbank-account/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.StAXArtifactProcessor Mon Mar 10 11:03:52 2008
@@ -0,0 +1,19 @@
+# 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. 
+
+# Implementation class for the artifact processor extension
+bigbank.account.security.CheckingsDeptAuthorizationPolicyProcessor;qname=http://bigbank/checkings#AuthPolicy,model=bigbank.account.security.CheckingsDeptAuthPolicy

Added: incubator/tuscany/java/sca/demos/bigbank-account/src/main/resources/META-INF/services/org.apache.tuscany.sca.policy.util.PolicyHandler
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/demos/bigbank-account/src/main/resources/META-INF/services/org.apache.tuscany.sca.policy.util.PolicyHandler?rev=635621&view=auto
==============================================================================
--- incubator/tuscany/java/sca/demos/bigbank-account/src/main/resources/META-INF/services/org.apache.tuscany.sca.policy.util.PolicyHandler (added)
+++ incubator/tuscany/java/sca/demos/bigbank-account/src/main/resources/META-INF/services/org.apache.tuscany.sca.policy.util.PolicyHandler Mon Mar 10 11:03:52 2008
@@ -0,0 +1,20 @@
+# 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.
+# 
+# PolicyHandlerClasses to interpret specific PolicyModels against specific QoS infrastructures
+# handler classname;qname=<policy intent addressed>;model=<policy model class>
+bigbank.account.security.CheckingsDeptAuthorizationPolicyHandler;intent=http://bigbank/checkings#chkDeptAuthorization,model=bigbank.account.security.CheckingsDeptAuthPolicy



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org