From a7c1a39d8c3c4ef4d5878dbff726085082a17e8a Mon Sep 17 00:00:00 2001 From: lresende Date: Wed, 11 Nov 2009 23:09:31 +0000 Subject: Moving 2.x branches git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@835136 13f79535-47bb-0310-9956-ffa450edef68 --- .../sca-java-2.0-M3/modules/assembly-xsd/LICENSE | 337 +++++++++++++ .../modules/assembly-xsd/META-INF/MANIFEST.MF | 14 + .../sca-java-2.0-M3/modules/assembly-xsd/NOTICE | 38 ++ .../sca-java-2.0-M3/modules/assembly-xsd/pom.xml | 31 ++ ...any.sca.contribution.processor.ValidationSchema | 18 + .../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 +++++ .../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-cd03.xsd | 35 ++ .../main/resources/sca-binding-jca-1.1-cd02.xsd | 167 +++++++ .../main/resources/sca-binding-jms-1.1-cd02.xsd | 160 +++++++ .../main/resources/sca-binding-sca-1.1-cd03.xsd | 20 + .../src/main/resources/sca-binding-ws-1.1-cd02.xsd | 36 ++ .../main/resources/sca-contribution-1.1-cd03.xsd | 86 ++++ .../main/resources/sca-contribution-c-1.1-cd02.xsd | 35 ++ .../resources/sca-contribution-cpp-1.1-cd02.xsd | 35 ++ .../resources/sca-contribution-java-1.1-cd01.xsd | 33 ++ .../src/main/resources/sca-core-1.1-cd03.xsd | 529 +++++++++++++++++++++ .../main/resources/sca-definitions-1.1-cd03.xsd | 31 ++ .../resources/sca-implementation-bpel-1.1-cd02.xsd | 31 ++ .../resources/sca-implementation-c-1.1-cd02.xsd | 57 +++ .../sca-implementation-composite-1.1-cd03.xsd | 26 + .../resources/sca-implementation-cpp-1.1-cd02.xsd | 54 +++ .../resources/sca-implementation-java-1.1-cd01.xsd | 27 ++ .../resources/sca-implementation-spring-1.1.xsd | 22 + .../main/resources/sca-interface-c-1.1-cd02.xsd | 41 ++ .../main/resources/sca-interface-cpp-1.1-cd02.xsd | 42 ++ .../main/resources/sca-interface-java-1.1-cd03.xsd | 29 ++ .../main/resources/sca-interface-wsdl-1.1-cd03.xsd | 29 ++ .../src/main/resources/sca-policy-1.1-cd02.xsd | 105 ++++ .../sca-policy-1.1-intents-definitions-cd02.xml | 243 ++++++++++ .../main/resources/tuscany-sca-1.1-binding-dwr.xsd | 41 ++ .../resources/tuscany-sca-1.1-binding-http.xsd | 41 ++ .../resources/tuscany-sca-1.1-binding-jsonrpc.xsd | 41 ++ .../main/resources/tuscany-sca-1.1-binding-rmi.xsd | 40 ++ .../tuscany-sca-1.1-implementation-osgi.xsd | 53 +++ .../src/main/resources/tuscany-sca-1.1.xsd | 34 ++ 43 files changed, 4218 insertions(+) create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/LICENSE create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/META-INF/MANIFEST.MF create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/NOTICE create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/pom.xml create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.ValidationSchema create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/XMLSchema.dtd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/datatypes.dtd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/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/sca-java-2.0-M3/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/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/ws-addr.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/ws-policy.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/wsdli.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/xml.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/xmldsig-core-schema.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-1.1-cd03.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-binding-jca-1.1-cd02.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-binding-jms-1.1-cd02.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-binding-sca-1.1-cd03.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-binding-ws-1.1-cd02.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-contribution-1.1-cd03.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-contribution-c-1.1-cd02.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-contribution-cpp-1.1-cd02.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-contribution-java-1.1-cd01.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-core-1.1-cd03.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-definitions-1.1-cd03.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-implementation-bpel-1.1-cd02.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-implementation-c-1.1-cd02.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-implementation-composite-1.1-cd03.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-implementation-cpp-1.1-cd02.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-implementation-java-1.1-cd01.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-implementation-spring-1.1.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-interface-c-1.1-cd02.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-interface-cpp-1.1-cd02.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-interface-java-1.1-cd03.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-interface-wsdl-1.1-cd03.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-policy-1.1-cd02.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-policy-1.1-intents-definitions-cd02.xml create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-dwr.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-http.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-jsonrpc.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-rmi.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-implementation-osgi.xsd create mode 100644 sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1.xsd (limited to 'sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd') diff --git a/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/LICENSE b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/LICENSE new file mode 100644 index 0000000000..2ea1dcc129 --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/LICENSE @@ -0,0 +1,337 @@ + + 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: + +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/sca-java-2.0-M3/modules/assembly-xsd/META-INF/MANIFEST.MF b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/META-INF/MANIFEST.MF new file mode 100644 index 0000000000..cabc686fcf --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/META-INF/MANIFEST.MF @@ -0,0 +1,14 @@ +Manifest-Version: 1.0 +Bundle-Vendor: The Apache Software Foundation +Bundle-Version: 2.0.0 +Tool: Bnd-0.0.255 +Bundle-Name: Apache Tuscany SCA Assembly Model XML Schemas +Bnd-LastModified: 1225397088359 +Created-By: 1.6.0_07 (Sun Microsystems Inc.) +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" diff --git a/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/NOTICE b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/NOTICE new file mode 100644 index 0000000000..78da9f5010 --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/NOTICE @@ -0,0 +1,38 @@ +${pom.name} +Copyright (c) 2005 - 2009 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/sca-java-2.0-M3/modules/assembly-xsd/pom.xml b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/pom.xml new file mode 100644 index 0000000000..3e6a13468f --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/pom.xml @@ -0,0 +1,31 @@ + + + + 4.0.0 + + org.apache.tuscany.sca + tuscany-modules + 2.0-M3-SNAPSHOT + ../pom.xml + + tuscany-assembly-xsd + Apache Tuscany SCA Assembly Model XSD Files + + diff --git a/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.ValidationSchema b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.ValidationSchema new file mode 100644 index 0000000000..5007705d41 --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.ValidationSchema @@ -0,0 +1,18 @@ +# 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 \ No newline at end of file diff --git a/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/XMLSchema.dtd b/sca-java-2.x/branches/sca-java-2.0-M3/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/sca-java-2.0-M3/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/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/datatypes.dtd b/sca-java-2.x/branches/sca-java-2.0-M3/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/sca-java-2.0-M3/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/sca-java-2.0-M3/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/sca-java-2.0-M3/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..7596dc5dc1 --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/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/sca-java-2.0-M3/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/sca-java-2.0-M3/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..e088d137e4 --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/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/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/ws-addr.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/ws-addr.xsd new file mode 100644 index 0000000000..d4f272ec7f --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/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/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/ws-policy.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/ws-policy.xsd new file mode 100644 index 0000000000..8d4bd32fc4 --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/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/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/wsdli.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/wsdli.xsd new file mode 100644 index 0000000000..24e0b5a975 --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/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/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/xml.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/xml.xsd new file mode 100644 index 0000000000..267b0d33b4 --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/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/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/xmldsig-core-schema.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/org/apache/tuscany/sca/assembly/xsd/xmldsig-core-schema.xsd new file mode 100644 index 0000000000..df126b30e6 --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/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/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-1.1-cd03.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-1.1-cd03.xsd new file mode 100644 index 0000000000..edd3187ae1 --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-1.1-cd03.xsd @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-binding-jca-1.1-cd02.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-binding-jca-1.1-cd02.xsd new file mode 100644 index 0000000000..490c9659f4 --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-binding-jca-1.1-cd02.xsd @@ -0,0 +1,167 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-binding-jms-1.1-cd02.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-binding-jms-1.1-cd02.xsd new file mode 100644 index 0000000000..6a898c7e7b --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-binding-jms-1.1-cd02.xsd @@ -0,0 +1,160 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-binding-sca-1.1-cd03.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-binding-sca-1.1-cd03.xsd new file mode 100644 index 0000000000..7a6d1a903b --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-binding-sca-1.1-cd03.xsd @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-binding-ws-1.1-cd02.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-binding-ws-1.1-cd02.xsd new file mode 100644 index 0000000000..bae52390fa --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-binding-ws-1.1-cd02.xsd @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-contribution-1.1-cd03.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-contribution-1.1-cd03.xsd new file mode 100644 index 0000000000..8445749363 --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-contribution-1.1-cd03.xsd @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-contribution-c-1.1-cd02.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-contribution-c-1.1-cd02.xsd new file mode 100644 index 0000000000..4397834520 --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-contribution-c-1.1-cd02.xsd @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-contribution-cpp-1.1-cd02.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-contribution-cpp-1.1-cd02.xsd new file mode 100644 index 0000000000..2271b780ee --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-contribution-cpp-1.1-cd02.xsd @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-contribution-java-1.1-cd01.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-contribution-java-1.1-cd01.xsd new file mode 100644 index 0000000000..8923a4b9e2 --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-contribution-java-1.1-cd01.xsd @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-core-1.1-cd03.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-core-1.1-cd03.xsd new file mode 100644 index 0000000000..0c5f75e56f --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-core-1.1-cd03.xsd @@ -0,0 +1,529 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-definitions-1.1-cd03.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-definitions-1.1-cd03.xsd new file mode 100644 index 0000000000..0feadcddcd --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-definitions-1.1-cd03.xsd @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-implementation-bpel-1.1-cd02.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-implementation-bpel-1.1-cd02.xsd new file mode 100644 index 0000000000..3c19424a83 --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-implementation-bpel-1.1-cd02.xsd @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-implementation-c-1.1-cd02.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-implementation-c-1.1-cd02.xsd new file mode 100644 index 0000000000..11e191f0ed --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-implementation-c-1.1-cd02.xsd @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-implementation-composite-1.1-cd03.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-implementation-composite-1.1-cd03.xsd new file mode 100644 index 0000000000..050f456386 --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-implementation-composite-1.1-cd03.xsd @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-implementation-cpp-1.1-cd02.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-implementation-cpp-1.1-cd02.xsd new file mode 100644 index 0000000000..771186a91d --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-implementation-cpp-1.1-cd02.xsd @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-implementation-java-1.1-cd01.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-implementation-java-1.1-cd01.xsd new file mode 100644 index 0000000000..52c92e8259 --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-implementation-java-1.1-cd01.xsd @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-implementation-spring-1.1.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-implementation-spring-1.1.xsd new file mode 100644 index 0000000000..1e64dd0e47 --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-implementation-spring-1.1.xsd @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-interface-c-1.1-cd02.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-interface-c-1.1-cd02.xsd new file mode 100644 index 0000000000..f2c7d2034f --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-interface-c-1.1-cd02.xsd @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-interface-cpp-1.1-cd02.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-interface-cpp-1.1-cd02.xsd new file mode 100644 index 0000000000..c214f7c37b --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-interface-cpp-1.1-cd02.xsd @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-interface-java-1.1-cd03.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-interface-java-1.1-cd03.xsd new file mode 100644 index 0000000000..6acbe6cf1c --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-interface-java-1.1-cd03.xsd @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-interface-wsdl-1.1-cd03.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-interface-wsdl-1.1-cd03.xsd new file mode 100644 index 0000000000..f3abba888e --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-interface-wsdl-1.1-cd03.xsd @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-policy-1.1-cd02.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-policy-1.1-cd02.xsd new file mode 100644 index 0000000000..b3de95509e --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-policy-1.1-cd02.xsd @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-policy-1.1-intents-definitions-cd02.xml b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-policy-1.1-intents-definitions-cd02.xml new file mode 100644 index 0000000000..2e96713233 --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/sca-policy-1.1-intents-definitions-cd02.xml @@ -0,0 +1,243 @@ + + + + + + + + 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 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. + + + + diff --git a/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-dwr.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-dwr.xsd new file mode 100644 index 0000000000..bb3ad00cd7 --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/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/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-http.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-http.xsd new file mode 100644 index 0000000000..32f2a51276 --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-http.xsd @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-jsonrpc.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-jsonrpc.xsd new file mode 100644 index 0000000000..68dea85a12 --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/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/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-rmi.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-binding-rmi.xsd new file mode 100644 index 0000000000..fadf94fffe --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/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/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-implementation-osgi.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1-implementation-osgi.xsd new file mode 100644 index 0000000000..65d85066ae --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/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/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1.xsd b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1.xsd new file mode 100644 index 0000000000..d36fff3ca1 --- /dev/null +++ b/sca-java-2.x/branches/sca-java-2.0-M3/modules/assembly-xsd/src/main/resources/tuscany-sca-1.1.xsd @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + \ No newline at end of file -- cgit v1.2.3