From 62d55709374e7c299f720aa9066f8b3dcb315ac0 Mon Sep 17 00:00:00 2001 From: antelder Date: Mon, 18 Jul 2011 10:21:06 +0000 Subject: Create a branch for beta3 git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1147804 13f79535-47bb-0310-9956-ffa450edef68 --- .../2.0-Beta3/modules/assembly-xsd/LICENSE | 338 +++++++++++++++ .../modules/assembly-xsd/META-INF/MANIFEST.MF | 13 + .../branches/2.0-Beta3/modules/assembly-xsd/NOTICE | 38 ++ .../2.0-Beta3/modules/assembly-xsd/pom.xml | 31 ++ .../apache/tuscany/sca/assembly/xsd/Constants.java | 140 ++++++ ...any.sca.contribution.processor.ValidationSchema | 19 + .../apache/tuscany/sca/assembly/xsd/XMLSchema.dtd | 402 ++++++++++++++++++ .../apache/tuscany/sca/assembly/xsd/datatypes.dtd | 204 +++++++++ .../xsd/oasis-200401-wss-wssecurity-secext-1.0.xsd | 195 +++++++++ .../oasis-200401-wss-wssecurity-utility-1.0.xsd | 108 +++++ .../assembly/xsd/sca-spring-extension-csd01.xsd | 66 +++ .../apache/tuscany/sca/assembly/xsd/ws-addr.xsd | 137 ++++++ .../apache/tuscany/sca/assembly/xsd/ws-policy.xsd | 141 +++++++ .../org/apache/tuscany/sca/assembly/xsd/wsdli.xsd | 35 ++ .../org/apache/tuscany/sca/assembly/xsd/xml.xsd | 117 ++++++ .../sca/assembly/xsd/xmldsig-core-schema.xsd | 318 ++++++++++++++ .../src/main/resources/sca-1.1-cd06.xsd | 40 ++ .../resources/sca-binding-ejb-1.1-cd02-rev2.xsd | 33 ++ .../resources/sca-binding-jca-1.1-cd04-rev2.xsd | 169 ++++++++ .../resources/sca-binding-jms-1.1-cd04-rev2.xsd | 212 ++++++++++ .../main/resources/sca-binding-sca-1.1-cd06.xsd | 20 + .../resources/sca-binding-ws-1.1-cd04-rev2.xsd | 34 ++ .../sca-binding-ws-callback-1.1-cd04-rev1.xsd | 19 + .../main/resources/sca-contribution-1.1-cd06.xsd | 89 ++++ .../main/resources/sca-contribution-c-1.1-cd06.xsd | 35 ++ .../resources/sca-contribution-cpp-1.1-cd06.xsd | 35 ++ .../resources/sca-contribution-java-1.1-cd03.xsd | 34 ++ .../src/main/resources/sca-core-1.1-cd06.xsd | 468 +++++++++++++++++++++ .../main/resources/sca-definitions-1.1-cd06.xsd | 31 ++ .../resources/sca-implementation-bpel-1.1-cd03.xsd | 32 ++ .../resources/sca-implementation-c-1.1-cd06.xsd | 55 +++ .../sca-implementation-composite-1.1-cd06.xsd | 26 ++ .../resources/sca-implementation-cpp-1.1-cd06.xsd | 63 +++ .../resources/sca-implementation-java-1.1-cd03.xsd | 26 ++ .../sca-implementation-spring-1.1-cd01.xsd | 21 + .../main/resources/sca-interface-c-1.1-cd06.xsd | 51 +++ .../main/resources/sca-interface-cpp-1.1-cd06.xsd | 51 +++ .../main/resources/sca-interface-java-1.1-cd05.xsd | 28 ++ .../main/resources/sca-interface-wsdl-1.1-cd06.xsd | 28 ++ .../src/main/resources/sca-jee-1.1-wd03.xsd | 52 +++ .../src/main/resources/sca-policy-1.1-cd04.xsd | 134 ++++++ .../sca-policy-1.1-intents-definitions-cd04.xml | 249 +++++++++++ .../resources/tuscany-sca-1.1-binding-atom.xsd | 43 ++ .../main/resources/tuscany-sca-1.1-binding-dwr.xsd | 41 ++ .../resources/tuscany-sca-1.1-binding-http.xsd | 69 +++ .../main/resources/tuscany-sca-1.1-binding-jms.xsd | 128 ++++++ .../resources/tuscany-sca-1.1-binding-jsonrpc.xsd | 41 ++ .../resources/tuscany-sca-1.1-binding-rest.xsd | 105 +++++ .../main/resources/tuscany-sca-1.1-binding-rmi.xsd | 40 ++ .../main/resources/tuscany-sca-1.1-binding-rss.xsd | 43 ++ .../tuscany-sca-1.1-contribution-resource.xsd | 46 ++ .../tuscany-sca-1.1-implementation-osgi.xsd | 53 +++ .../tuscany-sca-1.1-implementation-script.xsd | 38 ++ .../tuscany-sca-1.1-implementation-widget.xsd | 42 ++ .../src/main/resources/tuscany-sca-1.1.xsd | 44 ++ 55 files changed, 5070 insertions(+) create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/LICENSE create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/META-INF/MANIFEST.MF create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/NOTICE create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/pom.xml create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/java/org/apache/tuscany/sca/assembly/xsd/Constants.java create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.ValidationSchema create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/XMLSchema.dtd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/datatypes.dtd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/oasis-200401-wss-wssecurity-secext-1.0.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/oasis-200401-wss-wssecurity-utility-1.0.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/sca-spring-extension-csd01.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/ws-addr.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/ws-policy.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/wsdli.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/xml.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/xmldsig-core-schema.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-1.1-cd06.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-binding-ejb-1.1-cd02-rev2.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-binding-jca-1.1-cd04-rev2.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-binding-jms-1.1-cd04-rev2.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-binding-sca-1.1-cd06.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-binding-ws-1.1-cd04-rev2.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-binding-ws-callback-1.1-cd04-rev1.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-contribution-1.1-cd06.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-contribution-c-1.1-cd06.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-contribution-cpp-1.1-cd06.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-contribution-java-1.1-cd03.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-core-1.1-cd06.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-definitions-1.1-cd06.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-implementation-bpel-1.1-cd03.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-implementation-c-1.1-cd06.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-implementation-composite-1.1-cd06.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-implementation-cpp-1.1-cd06.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-implementation-java-1.1-cd03.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-implementation-spring-1.1-cd01.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-interface-c-1.1-cd06.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-interface-cpp-1.1-cd06.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-interface-java-1.1-cd05.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-interface-wsdl-1.1-cd06.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-jee-1.1-wd03.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-policy-1.1-cd04.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-policy-1.1-intents-definitions-cd04.xml create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-atom.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-dwr.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-http.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-jms.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-jsonrpc.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-rest.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-rmi.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-rss.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-contribution-resource.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-implementation-osgi.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-implementation-script.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-implementation-widget.xsd create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1.xsd (limited to 'sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd') diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/LICENSE b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/LICENSE new file mode 100644 index 0000000000..0bea130c88 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/LICENSE @@ -0,0 +1,338 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed 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. + + + +=============================================================================== + +Apache Tuscany SCA for Java Subcomponents +=========================================: + +The Tuscany SCA for Java release includes a number of subcomponents with +separate copyright notices and license terms. Your use of the source +code for the these subcomponents is subject to the terms and +conditions of the following licenses. + +=============================================================================== + +This module includes XSD files under the following OASIS license: + +Copyright (C) OASIS(R) 2005, 2009. All Rights Reserved. +All capitalized terms in the following text have the meanings assigned to them in the OASIS Intellectual +Property Rights Policy (the "OASIS IPR Policy"). The full Policy may be found at the OASIS website. +This document and translations of it may be copied and furnished to others, and derivative works that +comment on or otherwise explain it or assist in its implementation may be prepared, copied, published, +and distributed, in whole or in part, without restriction of any kind, provided that the above copyright +notice and this section are included on all such copies and derivative works. However, this document +itself may not be modified in any way, including by removing the copyright notice or references to OASIS, +except as needed for the purpose of developing any document or deliverable produced by an OASIS +Technical Committee (in which case the rules applicable to copyrights, as set forth in the OASIS IPR +Policy, must be followed) or as required to translate it into languages other than English. +The limited permissions granted above are perpetual and will not be revoked by OASIS or its successors +or assigns. +This document and the information contained herein is provided on an "AS IS" basis and OASIS +DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY +WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY OWNERSHIP +RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR +PURPOSE. +OASIS requests that any OASIS Party or any other party that believes it has patent claims that would +necessarily be infringed by implementations of this OASIS Committee Specification or OASIS Standard, +to notify OASIS TC Administrator and provide an indication of its willingness to grant patent licenses to +such patent claims in a manner consistent with the IPR Mode of the OASIS Technical Committee that +produced this specification. +OASIS invites any party to contact the OASIS TC Administrator if it is aware of a claim of ownership of +any patent claims that would necessarily be infringed by implementations of this specification by a patent +holder that is not willing to provide a license to such patent claims in a manner consistent with the IPR +Mode of the OASIS Technical Committee that produced this specification. OASIS may include such +claims on its website, but disclaims any obligation to do so. +OASIS takes no position regarding the validity or scope of any intellectual property or other rights that +might be claimed to pertain to the implementation or use of the technology described in this document or +the extent to which any license under such rights might or might not be available; neither does it represent +that it has made any effort to identify any such rights. Information on OASIS' procedures with respect to +rights in any document or deliverable produced by an OASIS Technical Committee can be found on the +OASIS website. Copies of claims of rights made available for publication and any assurances of licenses +to be made available, or the result of an attempt made to obtain a general license or permission for the use +of such proprietary rights by implementers or users of this OASIS Committee Specification or OASIS +Standard, can be obtained from the OASIS TC Administrator. OASIS makes no representation that any +information or list of intellectual property rights will at any time be complete, or that any claims in such list +are, in fact, Essential Claims. +The names "OASIS", are trademarks of OASIS, the owner and developer of this specification, and should +be used only to refer to the organization and its official outputs. OASIS welcomes reference to, and +implementation and use of, specifications, while reserving the right to enforce its marks against misleading +uses. Please see http://www.oasis-open.org/who/trademark.php for above guidance. + +=============================================================================== + +This module includes XSD files under the following W3C(r) Software License: + +W3C(r) SOFTWARE NOTICE AND LICENSE +http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 + +This work (and included software, documentation such as READMEs, or other related items) +is being provided by the copyright holders under the following license. By obtaining, +using and/or copying this work, you (the licensee) agree that you have read, understood, +and will comply with the following terms and conditions. + +Permission to copy, modify, and distribute this software and its documentation, with or +without modification, for any purpose and without fee or royalty is hereby granted, provided +that you include the following on ALL copies of the software and documentation or portions +thereof, including modifications: + + 1. The full text of this NOTICE in a location viewable to users of the redistributed or + derivative work. + 2. Any pre-existing intellectual property disclaimers, notices, or terms and conditions. + If none exist, the W3C Software Short Notice should be included (hypertext is preferred, + text is permitted) within the body of any redistributed or derivative code. + 3. Notice of any changes or modifications to the files, including the date changes were + made. (We recommend you provide URIs to the location from which the code is derived.) + +THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO +REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES +OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR +DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER +RIGHTS. + +COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL +DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION. + +The name and trademarks of copyright holders may NOT be used in advertising or publicity +pertaining to the software without specific, written prior permission. Title to copyright +in this software and any associated documentation will at all times remain with copyright +holders. + +=============================================================================== + +This module includes XSD files under the following license: + +http://www.w3.org/Consortium/Legal/copyright-software-19980720 + +W3C® SOFTWARE NOTICE AND LICENSE +Copyright (c) 1994-2002 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche +en Informatique et en Automatique, Keio University). All Rights Reserved. http://www.w3.org/Consortium/Legal/ + +This W3C work (including software, documents, or other related items) is being provided by the copyright holders under +the following license. By obtaining, using and/or copying this work, you (the licensee) agree that you have read, understood, +and will comply with the following terms and conditions: + +Permission to use, copy, modify, and distribute this software and its documentation, with or without modification, +for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies +of the software and documentation or portions thereof, including modifications, that you make: + + 1. The full text of this NOTICE in a location viewable to users of the redistributed or derivative work. + 2. Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, a short +notice of the following form (hypertext is preferred, text is permitted) should be used within the body of any redistributed +or derivative code: "Copyright (c) [$date-of-software] World Wide Web Consortium, (Massachusetts Institute of Technology, +Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. http://www.w3.org/Consortium/Legal/" + 3. Notice of any changes or modifications to the W3C files, including the date changes were made. (We recommend you provide URIs +to the location from which the code is derived.) + +THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE +OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. + +COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE +OF THE SOFTWARE OR DOCUMENTATION. + +The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the software +without specific, written prior permission. Title to copyright in this software and any associated documentation will +at all times remain with copyright holders. diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/META-INF/MANIFEST.MF b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/META-INF/MANIFEST.MF new file mode 100644 index 0000000000..ff93db6b14 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/META-INF/MANIFEST.MF @@ -0,0 +1,13 @@ +Manifest-Version: 1.0 +Bundle-Vendor: The Apache Software Foundation +Bundle-Version: 2.0.0 +SCA-Version: 1.1 +Bundle-Name: Apache Tuscany SCA Assembly Model XML Schemas +Bundle-ManifestVersion: 2 +Bundle-Description: Apache Tuscany SCA Assembly Model XML Schemas +Bundle-License: http://www.apache.org/licenses/LICENSE-2.0.txt +Bundle-DocURL: http://www.apache.org/ +Bundle-SymbolicName: org.apache.tuscany.sca.assembly.xsd +Bundle-RequiredExecutionEnvironment: J2SE-1.5,JavaSE-1.6 +Export-Package: org.apache.tuscany.sca.assembly.xsd;version="2.0.0" +Import-Package: javax.xml.namespace diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/NOTICE b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/NOTICE new file mode 100644 index 0000000000..8d5d0a4770 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/NOTICE @@ -0,0 +1,38 @@ +${pom.name} +Copyright (c) 2005 - 2011 The Apache Software Foundation + +This product includes software developed by +The Apache Software Foundation (http://www.apache.org/). + +This product also includes software under the OASIS license +(see the LICENSE file contained in this distribution), with the following +copyright: + +Copyright (C) OASIS(R) 2005, 2009. All Rights Reserved. +OASIS trademark, IPR and other policies apply. + +This product also includes software under the W3C(r) Software License +(see the LICENSE file contained in this distribution), with the following +copyright: + +Copyright (c) 2004 World Wide Web Consortium (Massachusetts Institute of Technology, +European Research Consortium for Informatics and Mathematics, Keio University). +All Rights Reserved. This work is distributed under the W3C(r) Software License [1] +in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied +warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + + [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 + +This product also includes software under the W3C(c) Software License +with the following copyright: + +Copyright 2001 The Internet Society and W3C (Massachusetts Institute +of Technology, Institut National de Recherche en Informatique et en +Automatique, Keio University). All Rights Reserved. +http://www.w3.org/Consortium/Legal/ + +This document is governed by the W3C Software License [1] as described +in the FAQ [2]. + +[1] http://www.w3.org/Consortium/Legal/copyright-software-19980720 +[2] http://www.w3.org/Consortium/Legal/IPR-FAQ-20000620.html#DTD diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/pom.xml b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/pom.xml new file mode 100644 index 0000000000..00b36ef02d --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/pom.xml @@ -0,0 +1,31 @@ + + + + 4.0.0 + + org.apache.tuscany.sca + tuscany-modules + 2.0-Beta3-SNAPSHOT + ../pom.xml + + tuscany-assembly-xsd + Apache Tuscany SCA Assembly Model XSD Files + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/java/org/apache/tuscany/sca/assembly/xsd/Constants.java b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/java/org/apache/tuscany/sca/assembly/xsd/Constants.java new file mode 100644 index 0000000000..6a42cdbd2e --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/java/org/apache/tuscany/sca/assembly/xsd/Constants.java @@ -0,0 +1,140 @@ +/* + * 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 org.apache.tuscany.sca.assembly.xsd; + +import java.net.URL; +import java.util.HashMap; +import java.util.Map; + +import javax.xml.namespace.QName; + +/** + * Constants used in SCA assembly XML files. + * + * @version $Rev$ $Date$ + */ +public interface Constants { + String SCA11_NS = "http://docs.oasis-open.org/ns/opencsa/sca/200912"; + String SCA11_TUSCANY_NS = "http://tuscany.apache.org/xmlns/sca/1.1"; + + String COMPONENT_TYPE = "componentType"; + QName COMPONENT_TYPE_QNAME = new QName(SCA11_NS, COMPONENT_TYPE); + + String SERVICE = "service"; + QName SERVICE_QNAME = new QName(SCA11_NS, SERVICE); + + String REFERENCE = "reference"; + QName REFERENCE_QNAME = new QName(SCA11_NS, REFERENCE); + + String PROPERTY = "property"; + QName PROPERTY_QNAME = new QName(SCA11_NS, PROPERTY); + + String COMPOSITE = "composite"; + QName COMPOSITE_QNAME = new QName(SCA11_NS, COMPOSITE); + + String INCLUDE = "include"; + QName INCLUDE_QNAME = new QName(SCA11_NS, INCLUDE); + + String COMPONENT = "component"; + QName COMPONENT_QNAME = new QName(SCA11_NS, COMPONENT); + + String WIRE = "wire"; + QName WIRE_QNAME = new QName(SCA11_NS, WIRE); + + String OPERATION = "operation"; + QName OPERATION_QNAME = new QName(SCA11_NS, OPERATION); + + String CALLBACK = "callback"; + QName CALLBACK_QNAME = new QName(SCA11_NS, CALLBACK); + + String IMPLEMENTATION_COMPOSITE = "implementation.composite"; + QName IMPLEMENTATION_COMPOSITE_QNAME = new QName(SCA11_NS, IMPLEMENTATION_COMPOSITE); + + String IMPLEMENTATION = "implementation"; + QName IMPLEMENTATION_QNAME = new QName(SCA11_NS, IMPLEMENTATION); + + String BINDING_SCA = "binding.sca"; + QName BINDING_SCA_QNAME = new QName(Constants.SCA11_NS, BINDING_SCA); + + String NAME = "name"; + String VALUE = "value"; + QName VALUE_QNAME = new QName(SCA11_NS, VALUE); + String TARGET_NAMESPACE = "targetNamespace"; + String LOCAL = "local"; + String AUTOWIRE = "autowire"; + String NONOVERRIDABLE = "nonOverridable"; + String REPLACE = "replace"; + String REQUIRES = "requires"; + String POLICY_SETS = "policySets"; + String APPLICABLE_POLICY_SETS = "applicablePolicySets"; + String PROMOTE = "promote"; + String TARGET = "target"; + String WIRED_BY_IMPL = "wiredByImpl"; + String MULTIPLICITY = "multiplicity"; + String TYPE = "type"; + String ELEMENT = "element"; + String MANY = "many"; + String MUST_SUPPLY = "mustSupply"; + String SOURCE = "source"; + String FILE = "file"; + String URI = "uri"; + String ZERO_ONE = "0..1"; + String ZERO_N = "0..n"; + String ONE_ONE = "1..1"; + String ONE_N = "1..n"; + + /** + * Cache for public XSDs and DTDs + */ + Map CACHED_XSDS = XSDCache.cache(); + + static class XSDCache { + static Map cache() { + Map cachedXSDs = new HashMap(); + cachedXSDs.put(Constants.SCA11_NS, Constants.class.getResource("/sca-1.1-cd06.xsd")); + cachedXSDs + .put("http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", + Constants.class + .getResource("/org/apache/tuscany/sca/assembly/xsd/oasis-200401-wss-wssecurity-secext-1.0.xsd")); + cachedXSDs + .put("http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", + Constants.class + .getResource("/org/apache/tuscany/sca/assembly/xsd/oasis-200401-wss-wssecurity-utility-1.0.xsd")); + cachedXSDs.put("http://www.w3.org/2005/08/addressing", Constants.class + .getResource("/org/apache/tuscany/sca/assembly/xsd/ws-addr.xsd")); + cachedXSDs.put("http://www.w3.org/ns/ws-policy", Constants.class + .getResource("/org/apache/tuscany/sca/assembly/xsd/ws-policy.xsd")); + cachedXSDs.put("http://www.w3.org/ns/wsdl-instance", Constants.class + .getResource("/org/apache/tuscany/sca/assembly/xsd/wsdli.xsd")); + cachedXSDs.put("http://www.w3.org/XML/1998/namespace", Constants.class + .getResource("/org/apache/tuscany/sca/assembly/xsd/xml.xsd")); + cachedXSDs.put("http://www.w3.org/2000/09/xmldsig#", Constants.class + .getResource("/org/apache/tuscany/sca/assembly/xsd/xmldsig-core-schema.xsd")); + + cachedXSDs.put("-//W3C//DTD XMLSchema 200102//EN", Constants.class + .getResource("/org/apache/tuscany/sca/assembly/xsd/XMLSchema.dtd")); + cachedXSDs.put("-//W3C//DTD XMLSCHEMA 200102//EN", Constants.class + .getResource("/org/apache/tuscany/sca/assembly/xsd/XMLSchema.dtd")); + cachedXSDs.put("datatypes", Constants.class + .getResource("/org/apache/tuscany/sca/assembly/xsd/datatypes.dtd")); + return cachedXSDs; + } + }; +} diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.ValidationSchema b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.ValidationSchema new file mode 100644 index 0000000000..863d161954 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.ValidationSchema @@ -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. +# +tuscany-sca-1.1.xsd +sca-1.1-cd06.xsd diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/XMLSchema.dtd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/XMLSchema.dtd new file mode 100644 index 0000000000..e8e8f7625a --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/XMLSchema.dtd @@ -0,0 +1,402 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +%xs-datatypes; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/datatypes.dtd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/datatypes.dtd new file mode 100644 index 0000000000..685e89a57e --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/datatypes.dtd @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/oasis-200401-wss-wssecurity-secext-1.0.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/oasis-200401-wss-wssecurity-secext-1.0.xsd new file mode 100644 index 0000000000..641798b17f --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/oasis-200401-wss-wssecurity-secext-1.0.xsd @@ -0,0 +1,195 @@ +ļ»æ + + + + + + + + This type represents an element with arbitrary attributes. + + + + + + + + + + + This type is used for password elements per Section 4.1. + + + + + + + + + + This type is used for elements containing stringified binary data. + + + + + + + + + + This type represents a username token per Section 4.1 + + + + + + + + + + + A security token that is encoded in binary + + + + + + + + + + A security token key identifier + + + + + + + + + + Typedef to allow a list of usages (as URIs). + + + + + + This global attribute is used to indicate the usage of a referenced or indicated token within the containing context + + + + + This type represents a reference to an external security token. + + + + + + + + This type represents a reference to an embedded security token. + + + + + + + + + + This type is used reference a security token. + + + + + + + + + + + This complexType defines header block to use for security-relevant data directed at a specific SOAP actor. + + + + + The use of "any" is to allow extensibility and different forms of security data. + + + + + + + + This complexType defines a container for elements to be specified from any namespace as properties/parameters of a DSIG transformation. + + + + + The use of "any" is to allow extensibility from any namespace. + + + + + + + + This element defines the wsse:UsernameToken element per Section 4.1. + + + + + This element defines the wsse:BinarySecurityToken element per Section 4.2. + + + + + This element defines a security token reference + + + + + This element defines a security token embedded reference + + + + + This element defines a key identifier reference + + + + + This element defines the wsse:SecurityTokenReference per Section 4.3. + + + + + This element defines the wsse:Security SOAP header element per Section 4. + + + + + This element contains properties for transformations from any namespace, including DSIG. + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/oasis-200401-wss-wssecurity-utility-1.0.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/oasis-200401-wss-wssecurity-utility-1.0.xsd new file mode 100644 index 0000000000..f8d74e9c6e --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/oasis-200401-wss-wssecurity-utility-1.0.xsd @@ -0,0 +1,108 @@ +ļ»æ + + + + + + +This type defines the fault code value for Timestamp message expiration. + + + + + + + + + + +This global attribute supports annotating arbitrary elements with an ID. + + + + + + +Convenience attribute group used to simplify this schema. + + + + + + + + + +This type is for elements whose [children] is a psuedo-dateTime and can have arbitrary attributes. + + + + + + + + + + + +This type is for elements whose [children] is an anyURI and can have arbitrary attributes. + + + + + + + + + + + + +This complex type ties together the timestamp related elements into a composite type. + + + + + + + + + + + + + + +This element allows Timestamps to be applied anywhere element wildcards are present, +including as a SOAP header. + + + + + + + +This element allows an expiration time to be applied anywhere element wildcards are present. + + + + + + +This element allows a creation time to be applied anywhere element wildcards are present. + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/sca-spring-extension-csd01.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/sca-spring-extension-csd01.xsd new file mode 100644 index 0000000000..2d8d25a2a5 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/sca-spring-extension-csd01.xsd @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/ws-addr.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/ws-addr.xsd new file mode 100644 index 0000000000..f6fc9c53b0 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/ws-addr.xsd @@ -0,0 +1,137 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/ws-policy.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/ws-policy.xsd new file mode 100644 index 0000000000..c43e5814ed --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/ws-policy.xsd @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/wsdli.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/wsdli.xsd new file mode 100644 index 0000000000..7fb8c1beed --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/wsdli.xsd @@ -0,0 +1,35 @@ + + + + + + + + + This attribute can be used to provide some hints on where + additional WSDL information for a given namespace can be + found in order to help with QName resolution + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/xml.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/xml.xsd new file mode 100644 index 0000000000..ac4b0ec8e6 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/xml.xsd @@ -0,0 +1,117 @@ + + + + + + + See http://www.w3.org/XML/1998/namespace.html and + http://www.w3.org/TR/REC-xml for information about this namespace. + + This schema document describes the XML namespace, in a form + suitable for import by other schema documents. + + Note that local names in this namespace are intended to be defined + only by the World Wide Web Consortium or its subgroups. The + following names are currently defined in this namespace and should + not be used with conflicting semantics by any Working Group, + specification, or document instance: + + base (as an attribute name): denotes an attribute whose value + provides a URI to be used as the base for interpreting any + relative URIs in the scope of the element on which it + appears; its value is inherited. This name is reserved + by virtue of its definition in the XML Base specification. + + lang (as an attribute name): denotes an attribute whose value + is a language code for the natural language of the content of + any element; its value is inherited. This name is reserved + by virtue of its definition in the XML specification. + + space (as an attribute name): denotes an attribute whose + value is a keyword indicating what whitespace processing + discipline is intended for the content of the element; its + value is inherited. This name is reserved by virtue of its + definition in the XML specification. + + Father (in any context at all): denotes Jon Bosak, the chair of + the original XML Working Group. This name is reserved by + the following decision of the W3C XML Plenary and + XML Coordination groups: + + In appreciation for his vision, leadership and dedication + the W3C XML Plenary on this 10th day of February, 2000 + reserves for Jon Bosak in perpetuity the XML name + xml:Father + + + + + This schema defines attributes and an attribute group + suitable for use by + schemas wishing to allow xml:base, xml:lang or xml:space attributes + on elements they define. + + To enable this, such a schema must import this schema + for the XML namespace, e.g. as follows: + <schema . . .> + . . . + <import namespace="http://www.w3.org/XML/1998/namespace" + schemaLocation="http://www.w3.org/2001/03/xml.xsd"/> + + Subsequently, qualified reference to any of the attributes + or the group defined below will have the desired effect, e.g. + + <type . . .> + . . . + <attributeGroup ref="xml:specialAttrs"/> + + will define a type which will schema-validate an instance + element with any of those attributes + + + + In keeping with the XML Schema WG's standard versioning + policy, this schema document will persist at + http://www.w3.org/2001/03/xml.xsd. + At the date of issue it can also be found at + http://www.w3.org/2001/xml.xsd. + The schema document at that URI may however change in the future, + in order to remain compatible with the latest version of XML Schema + itself. In other words, if the XML Schema namespace changes, the version + of this document at + http://www.w3.org/2001/xml.xsd will change + accordingly; the version at + http://www.w3.org/2001/03/xml.xsd will not change. + + + + + + In due course, we should install the relevant ISO 2- and 3-letter + codes as the enumerated possible values . . . + + + + + + + + + + + + + + + See http://www.w3.org/TR/xmlbase/ for + information about this attribute. + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/xmldsig-core-schema.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/xmldsig-core-schema.xsd new file mode 100644 index 0000000000..c4e9808cfd --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/xmldsig-core-schema.xsd @@ -0,0 +1,318 @@ + + + + + + ]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-1.1-cd06.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-1.1-cd06.xsd new file mode 100644 index 0000000000..b6be5df43b --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-1.1-cd06.xsd @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-binding-ejb-1.1-cd02-rev2.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-binding-ejb-1.1-cd02-rev2.xsd new file mode 100644 index 0000000000..0b388fcf17 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-binding-ejb-1.1-cd02-rev2.xsd @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-binding-jca-1.1-cd04-rev2.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-binding-jca-1.1-cd04-rev2.xsd new file mode 100644 index 0000000000..75446411db --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-binding-jca-1.1-cd04-rev2.xsd @@ -0,0 +1,169 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-binding-jms-1.1-cd04-rev2.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-binding-jms-1.1-cd04-rev2.xsd new file mode 100644 index 0000000000..8e303f3a3f --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-binding-jms-1.1-cd04-rev2.xsd @@ -0,0 +1,212 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-binding-sca-1.1-cd06.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-binding-sca-1.1-cd06.xsd new file mode 100644 index 0000000000..9cc22601b3 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-binding-sca-1.1-cd06.xsd @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-binding-ws-1.1-cd04-rev2.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-binding-ws-1.1-cd04-rev2.xsd new file mode 100644 index 0000000000..f080e4ef49 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-binding-ws-1.1-cd04-rev2.xsd @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-binding-ws-callback-1.1-cd04-rev1.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-binding-ws-callback-1.1-cd04-rev1.xsd new file mode 100644 index 0000000000..7d5482e9f0 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-binding-ws-callback-1.1-cd04-rev1.xsd @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-contribution-1.1-cd06.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-contribution-1.1-cd06.xsd new file mode 100644 index 0000000000..a3dea7eab4 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-contribution-1.1-cd06.xsd @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-contribution-c-1.1-cd06.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-contribution-c-1.1-cd06.xsd new file mode 100644 index 0000000000..2a0feadac9 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-contribution-c-1.1-cd06.xsd @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-contribution-cpp-1.1-cd06.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-contribution-cpp-1.1-cd06.xsd new file mode 100644 index 0000000000..a5201661c1 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-contribution-cpp-1.1-cd06.xsd @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-contribution-java-1.1-cd03.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-contribution-java-1.1-cd03.xsd new file mode 100644 index 0000000000..89b90965a4 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-contribution-java-1.1-cd03.xsd @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-core-1.1-cd06.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-core-1.1-cd06.xsd new file mode 100644 index 0000000000..668e3b1ce3 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-core-1.1-cd06.xsd @@ -0,0 +1,468 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-definitions-1.1-cd06.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-definitions-1.1-cd06.xsd new file mode 100644 index 0000000000..4781421138 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-definitions-1.1-cd06.xsd @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-implementation-bpel-1.1-cd03.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-implementation-bpel-1.1-cd03.xsd new file mode 100644 index 0000000000..ad5daf8224 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-implementation-bpel-1.1-cd03.xsd @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-implementation-c-1.1-cd06.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-implementation-c-1.1-cd06.xsd new file mode 100644 index 0000000000..8616c73de3 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-implementation-c-1.1-cd06.xsd @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-implementation-composite-1.1-cd06.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-implementation-composite-1.1-cd06.xsd new file mode 100644 index 0000000000..77ef5f3b0c --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-implementation-composite-1.1-cd06.xsd @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-implementation-cpp-1.1-cd06.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-implementation-cpp-1.1-cd06.xsd new file mode 100644 index 0000000000..534f401d50 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-implementation-cpp-1.1-cd06.xsd @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-implementation-java-1.1-cd03.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-implementation-java-1.1-cd03.xsd new file mode 100644 index 0000000000..4fbbff25e2 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-implementation-java-1.1-cd03.xsd @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-implementation-spring-1.1-cd01.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-implementation-spring-1.1-cd01.xsd new file mode 100644 index 0000000000..279b9abdb1 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-implementation-spring-1.1-cd01.xsd @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-interface-c-1.1-cd06.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-interface-c-1.1-cd06.xsd new file mode 100644 index 0000000000..33abeb456a --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-interface-c-1.1-cd06.xsd @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-interface-cpp-1.1-cd06.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-interface-cpp-1.1-cd06.xsd new file mode 100644 index 0000000000..e4881e5bb4 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-interface-cpp-1.1-cd06.xsd @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-interface-java-1.1-cd05.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-interface-java-1.1-cd05.xsd new file mode 100644 index 0000000000..a505ddd3fc --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-interface-java-1.1-cd05.xsd @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-interface-wsdl-1.1-cd06.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-interface-wsdl-1.1-cd06.xsd new file mode 100644 index 0000000000..6db2ca7d22 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-interface-wsdl-1.1-cd06.xsd @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-jee-1.1-wd03.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-jee-1.1-wd03.xsd new file mode 100644 index 0000000000..06f15cc9ca --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-jee-1.1-wd03.xsd @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-policy-1.1-cd04.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-policy-1.1-cd04.xsd new file mode 100644 index 0000000000..adc66487fe --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-policy-1.1-cd04.xsd @@ -0,0 +1,134 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-policy-1.1-intents-definitions-cd04.xml b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-policy-1.1-intents-definitions-cd04.xml new file mode 100644 index 0000000000..0d6c5ac714 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/sca-policy-1.1-intents-definitions-cd04.xml @@ -0,0 +1,249 @@ + + + + + + + + Communication through the binding requires that the + server is authenticated by the client + + + + + + + + Communication through the binding requires that the + client is authenticated by the server + + + + + + + + A convenience intent to help migration + + + + + + Communication through the binding requires that the + client and server to authenticate each other + + + + + + Communication through the binding prevents unauthorized + users from reading the messages + + + + + + + + Communication through the binding prevents tampering + with the messages sent between the client and the service. + + + + + + + + Ensures clients are authorized to use services. + + + + + + + + This intent is used to indicate that a message sent + by a client is always delivered to the component. + + + + + + This intent is used to indicate that a message that was + successfully sent by a client is not delivered more than + once to the component. + + + + + + This profile intent is used to indicate that a message sent + by a client is always delivered to the component. It also + indicates that duplicate messages are not delivered to the + component. + + + + + + This intent is used to indicate that all the messages are + delivered to the component in the order they were sent by + the client. + + + + + + + A managed transaction environment is necessary in order to + run the component. The specific type of managed transaction + needed is not constrained. + + + + For a component marked with managedTransaction.global + a global transaction needs to be present before dispatching + any method on the component - using any transaction + propagated from the client or else beginning and completing + a new transaction. + + + + + A component marked with managedTransaction.local needs to + run within a local transaction containment (LTC) that + is started and ended by the SCA runtime. + + + + + + + A component marked with noManagedTransaction needs to run without + a managed transaction, under neither a global transaction nor + an LTC. A transaction propagated to the hosting SCA runtime + is not joined by the hosting runtime on behalf of a + component marked with noManagedtransaction. + + + + + + For a reference marked as transactedOneWay any OneWay invocation + messages are transacted as part of a client global + transaction. + For a service marked as transactedOneWay any OneWay invocation + message are received from the transport binding in a + transacted fashion, under the serviceā€™s global transaction. + + + + + + For a reference indicates that any OneWay invocation messages + are sent immediately regardless of any client transaction. + For a service indicates that any OneWay invocation is + received immediately regardless of any target service + transaction. + + + + + + A service marked with propagatesTransaction is dispatched + under any propagated (client) transaction and the service binding + needs to be capable of receiving a transaction context. + A reference marked with propagatesTransaction propagates any + transaction context under which the client runs when the + reference is used for a request-response interaction and the + binding of a reference marked with propagatesTransaction needs to + be capable of propagating a transaction context. + + + + + + A service marked with suspendsTransaction is not dispatched + under any propagated (client) transaction. + A reference marked with suspendsTransaction does not propagate + any transaction context under which the client runs when the + reference is used. + + + + + + Used to indicate that the component requires both the + managedTransaction.global and the propagatesTransactions + intents + + + + + + + Indicates that request/response operations for the + interface of this wire are "long running" and must be + treated as two separate message transmissions + + + + + + Specifies that the EJB API is needed to communicate with + the service or reference. + + + + + + Specifies that the SOAP messaging model is used for delivering + messages. + + + + + + + + Requires that the messages are delivered and received via the + JMS API. + + + + + + This intent can only be used on a reference. Indicates that the + client is not able to handle new inbound connections. The binding + and callback binding are configured so that any + response or callback comes either through a back channel of the + connection from the client to the server or by having the client + poll the server for messages. + + + + \ No newline at end of file diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-atom.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-atom.xsd new file mode 100644 index 0000000000..603455a1f2 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-atom.xsd @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-dwr.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-dwr.xsd new file mode 100644 index 0000000000..52445c14c5 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-dwr.xsd @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-http.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-http.xsd new file mode 100644 index 0000000000..212c8abe4e --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-http.xsd @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-jms.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-jms.xsd new file mode 100644 index 0000000000..6dfc85e8cc --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-jms.xsd @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-jsonrpc.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-jsonrpc.xsd new file mode 100644 index 0000000000..d1bdcbdfae --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-jsonrpc.xsd @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-rest.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-rest.xsd new file mode 100644 index 0000000000..05adf814c3 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-rest.xsd @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-rmi.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-rmi.xsd new file mode 100644 index 0000000000..ea39a773e0 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-rmi.xsd @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-rss.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-rss.xsd new file mode 100644 index 0000000000..9857ec62b7 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-rss.xsd @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-contribution-resource.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-contribution-resource.xsd new file mode 100644 index 0000000000..09645724a4 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-contribution-resource.xsd @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-implementation-osgi.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-implementation-osgi.xsd new file mode 100644 index 0000000000..c97b91251b --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-implementation-osgi.xsd @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-implementation-script.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-implementation-script.xsd new file mode 100644 index 0000000000..fab809c7e1 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-implementation-script.xsd @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-implementation-widget.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-implementation-widget.xsd new file mode 100644 index 0000000000..491cb2abce --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-implementation-widget.xsd @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1.xsd b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1.xsd new file mode 100644 index 0000000000..115c789225 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1.xsd @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file -- cgit v1.2.3