From bdd0a41aed7edf21ec2a65cfa17a86af2ef8c48a Mon Sep 17 00:00:00 2001 From: dims Date: Tue, 17 Jun 2008 00:23:01 +0000 Subject: Move Tuscany from Incubator to top level. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@668359 13f79535-47bb-0310-9956-ffa450edef68 --- sandbox/jboynes/sca-client/LICENSE.txt | 202 ++++++++++++++++++ sandbox/jboynes/sca-client/NOTICE.txt | 14 ++ sandbox/jboynes/sca-client/README.txt | 35 ++++ sandbox/jboynes/sca-client/pom.xml | 102 +++++++++ .../main/java/org/osoa/sca/CallbackReference.java | 27 +++ .../main/java/org/osoa/sca/ComponentContext.java | 75 +++++++ .../src/main/java/org/osoa/sca/Conversation.java | 20 ++ .../org/osoa/sca/ConversationEndedException.java | 67 ++++++ .../osoa/sca/NoRegisteredCallbackException.java | 68 ++++++ .../main/java/org/osoa/sca/ReferenceFactory.java | 20 ++ .../src/main/java/org/osoa/sca/RequestContext.java | 49 +++++ .../main/java/org/osoa/sca/ServiceReference.java | 102 +++++++++ .../java/org/osoa/sca/ServiceRuntimeException.java | 69 ++++++ .../org/osoa/sca/ServiceUnavailableException.java | 65 ++++++ .../src/main/java/org/osoa/sca/Version.java | 45 ++++ .../sca/annotations/AllowsPassByReference.java | 38 ++++ .../java/org/osoa/sca/annotations/Callback.java | 44 ++++ .../java/org/osoa/sca/annotations/ComponentID.java | 44 ++++ .../java/org/osoa/sca/annotations/Constructor.java | 35 ++++ .../java/org/osoa/sca/annotations/Context.java | 36 ++++ .../org/osoa/sca/annotations/Conversation.java | 51 +++++ .../org/osoa/sca/annotations/ConversationID.java | 35 ++++ .../java/org/osoa/sca/annotations/Destroy.java | 35 ++++ .../java/org/osoa/sca/annotations/EagerInit.java | 43 ++++ .../org/osoa/sca/annotations/EndConversation.java | 34 +++ .../main/java/org/osoa/sca/annotations/Init.java | 36 ++++ .../main/java/org/osoa/sca/annotations/OneWay.java | 35 ++++ .../java/org/osoa/sca/annotations/Property.java | 53 +++++ .../java/org/osoa/sca/annotations/Reference.java | 46 ++++ .../java/org/osoa/sca/annotations/Remotable.java | 36 ++++ .../java/org/osoa/sca/annotations/Resource.java | 49 +++++ .../main/java/org/osoa/sca/annotations/Scope.java | 45 ++++ .../java/org/osoa/sca/annotations/Service.java | 43 ++++ .../src/main/resources/schemas/sca-binding-sca.xsd | 38 ++++ .../resources/schemas/sca-binding-webservice.xsd | 39 ++++ .../src/main/resources/schemas/sca-core.xsd | 233 +++++++++++++++++++++ .../resources/schemas/sca-implementation-java.xsd | 39 ++++ .../main/resources/schemas/sca-interface-java.xsd | 40 ++++ .../main/resources/schemas/sca-interface-wsdl.xsd | 40 ++++ .../sca-client/src/main/resources/schemas/sca.xsd | 34 +++ .../org/osoa/sca/annotations/CallbackTestCase.java | 70 +++++++ .../osoa/sca/annotations/usage/CallbackType.java | 49 +++++ .../src/test/java/sample/HelloCallback.java | 8 + .../src/test/java/sample/HelloService.java | 8 + .../src/test/java/sample/client/BasicClient.java | 38 ++++ .../test/java/sample/client/ReallyBasicClient.java | 34 +++ .../META-INF/services/org.osoa.sca.DomainFactory | 1 + 47 files changed, 2369 insertions(+) create mode 100644 sandbox/jboynes/sca-client/LICENSE.txt create mode 100644 sandbox/jboynes/sca-client/NOTICE.txt create mode 100644 sandbox/jboynes/sca-client/README.txt create mode 100644 sandbox/jboynes/sca-client/pom.xml create mode 100644 sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/CallbackReference.java create mode 100644 sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/ComponentContext.java create mode 100644 sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/Conversation.java create mode 100644 sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/ConversationEndedException.java create mode 100644 sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/NoRegisteredCallbackException.java create mode 100644 sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/ReferenceFactory.java create mode 100644 sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/RequestContext.java create mode 100644 sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/ServiceReference.java create mode 100644 sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/ServiceRuntimeException.java create mode 100644 sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/ServiceUnavailableException.java create mode 100644 sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/Version.java create mode 100644 sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/AllowsPassByReference.java create mode 100644 sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Callback.java create mode 100644 sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/ComponentID.java create mode 100644 sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Constructor.java create mode 100644 sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Context.java create mode 100644 sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Conversation.java create mode 100644 sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/ConversationID.java create mode 100644 sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Destroy.java create mode 100644 sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/EagerInit.java create mode 100644 sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/EndConversation.java create mode 100644 sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Init.java create mode 100644 sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/OneWay.java create mode 100644 sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Property.java create mode 100644 sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Reference.java create mode 100644 sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Remotable.java create mode 100644 sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Resource.java create mode 100644 sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Scope.java create mode 100644 sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Service.java create mode 100644 sandbox/jboynes/sca-client/src/main/resources/schemas/sca-binding-sca.xsd create mode 100644 sandbox/jboynes/sca-client/src/main/resources/schemas/sca-binding-webservice.xsd create mode 100644 sandbox/jboynes/sca-client/src/main/resources/schemas/sca-core.xsd create mode 100644 sandbox/jboynes/sca-client/src/main/resources/schemas/sca-implementation-java.xsd create mode 100644 sandbox/jboynes/sca-client/src/main/resources/schemas/sca-interface-java.xsd create mode 100644 sandbox/jboynes/sca-client/src/main/resources/schemas/sca-interface-wsdl.xsd create mode 100644 sandbox/jboynes/sca-client/src/main/resources/schemas/sca.xsd create mode 100644 sandbox/jboynes/sca-client/src/test/java/org/osoa/sca/annotations/CallbackTestCase.java create mode 100644 sandbox/jboynes/sca-client/src/test/java/org/osoa/sca/annotations/usage/CallbackType.java create mode 100644 sandbox/jboynes/sca-client/src/test/java/sample/HelloCallback.java create mode 100644 sandbox/jboynes/sca-client/src/test/java/sample/HelloService.java create mode 100644 sandbox/jboynes/sca-client/src/test/java/sample/client/BasicClient.java create mode 100644 sandbox/jboynes/sca-client/src/test/java/sample/client/ReallyBasicClient.java create mode 100644 sandbox/jboynes/sca-client/src/test/resources/META-INF/services/org.osoa.sca.DomainFactory (limited to 'sandbox/jboynes/sca-client') diff --git a/sandbox/jboynes/sca-client/LICENSE.txt b/sandbox/jboynes/sca-client/LICENSE.txt new file mode 100644 index 0000000000..d645695673 --- /dev/null +++ b/sandbox/jboynes/sca-client/LICENSE.txt @@ -0,0 +1,202 @@ + + 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. diff --git a/sandbox/jboynes/sca-client/NOTICE.txt b/sandbox/jboynes/sca-client/NOTICE.txt new file mode 100644 index 0000000000..d83ebbe236 --- /dev/null +++ b/sandbox/jboynes/sca-client/NOTICE.txt @@ -0,0 +1,14 @@ +${pom.name} +Copyright (c) 2005 - 2006 The Apache Software Foundation + +Apache Tuscany is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the Apache Web Services PMC. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +This product includes software developed by +The Apache Software Foundation (http://www.apache.org/). + diff --git a/sandbox/jboynes/sca-client/README.txt b/sandbox/jboynes/sca-client/README.txt new file mode 100644 index 0000000000..9b26d1690a --- /dev/null +++ b/sandbox/jboynes/sca-client/README.txt @@ -0,0 +1,35 @@ +Apache Tuscany M1 build (May, 2006) +=================================== + +http://incubator.apache.org/tuscany/ + +Tuscany is an effort undergoing incubation at the Apache Software Foundation +(ASF), sponsored by the Web Services PMC. + +Incubation is required of all newly accepted projects until a further review +indicates that the infrastructure, communications, and decision making process +have stabilized in a manner consistent with other successful ASF projects. + +While incubation status is not necessarily a reflection of the completeness or +stability of the code, it does indicate that the project has yet to be fully +endorsed by the ASF. + + +Support +------- + +Any problem with this release can be reported to the Tuscany mailing list +or in the JIRA issue tracker. + +Mailing list subscription: + tuscany-dev-subscribe@ws.apache.org + +Jira: + http://issues.apache.org/jira/browse/Tuscany + + +Thank you for using Tuscany! + + +The Tuscany Team. + diff --git a/sandbox/jboynes/sca-client/pom.xml b/sandbox/jboynes/sca-client/pom.xml new file mode 100644 index 0000000000..e7877bcdaf --- /dev/null +++ b/sandbox/jboynes/sca-client/pom.xml @@ -0,0 +1,102 @@ + + + + 4.0.0 + + org.apache.tuscany + parent + 2-incubator-SNAPSHOT + + org.osoa + sca-api-r${specVersion} + SCA API + API classes for the Service Component Architecture + 1.0-incubator-SNAPSHOT + osgi-bundle + + + 1.0 + + + + + + apache.snapshots + Apache Snapshot Repository + http://people.apache.org/repo/m2-snapshot-repository + + false + + + true + + + + apache.incubator + Apache Incubator Repository + http://people.apache.org/repo/m2-incubating-repository/ + + true + + + false + + + + + + + junit + junit + 3.8.1 + test + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.5 + 1.5 + + + + org.apache.felix.plugins + maven-osgi-plugin + 0.8.0-SNAPSHOT + true + + + ${pom.name} + ${pom.description} + ${pom.organization.name} + plugin + org.osoa.sca + org.osoa.sca;version="${specVersion}", org.osoa.sca.annotations;version="${specVersion}" + + + + + install + + diff --git a/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/CallbackReference.java b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/CallbackReference.java new file mode 100644 index 0000000000..bbcf154c6a --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/CallbackReference.java @@ -0,0 +1,27 @@ +package org.osoa.sca; + +/** + * @version $Rev$ $Date$ + */ +public interface CallbackReference { + /** + * Return a proxy that can be used to invoke the callback instance associated with this reference. + * + * @return a proxy that can be used to invoke the callback + */ + CB getCallback(); + + /** + * Returns the conversation associated with this callback. + * + * @return the conversation associated with this callback + */ + Conversation getConversation(); + + /** + * Returns the callback ID. + * + * @return the callback ID + */ + Object getCallbackID(); +} diff --git a/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/ComponentContext.java b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/ComponentContext.java new file mode 100644 index 0000000000..44f2503d05 --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/ComponentContext.java @@ -0,0 +1,75 @@ +package org.osoa.sca; + +/** + * @version $Rev$ $Date$ + */ +public interface ComponentContext { + /** + * Returns the absolute URI of the component within the SCA Domain. + * + * @return the absolute URI of the component + */ + String getURI(); + + /** + * Cast a type-safe reference to a ServiceReference. + * Converts a type-safe reference returned by locateService to an equivalent ServiceReference. + * + * @param target a reference proxy provided by the SCA runtime + * @return a ServiceReference equivalent for the proxy + * @throws IllegalArgumentException if the supplied instance is not a reference supplied by the SCA runtime + */ + ServiceReference cast(B target) throws IllegalArgumentException; + + /** + * Returns a proxy for a reference defined by this component. + * + * @param businessInterface the interface that will be used to invoke the service + * @param referenceName the name of the reference + * @return an object that implements the business interface + */ + B getService(Class businessInterface, String referenceName); + + /** + * Returns a ServiceReference for a reference defined by this component. + * + * @param businessInterface the interface that will be used to invoke the service + * @param referenceName the name of the reference + * @return a ServiceReference for the designated reference + */ + ServiceReference getServiceReference(Class businessInterface, String referenceName); + + /** + * Returns the value of an SCA property defined by this component. + * + * @param type the Java type to be returned for the property + * @param propertyName the name of the property whose value should be returned + * @return the property value + */ + B getProperty(Class type, String propertyName); + + /** + * Returns a ServiceReference that can be used to invoke this component over the default service. + * + * @param businessInterface the interface that will be used to invoke the service + * @return a ServiceReference that will invoke this component + */ + ServiceReference createSelfReference(Class businessInterface); + + /** + * Returns a ServiceReference that can be used to invoke this component over the designated service. + * + * @param businessInterface the interface that will be used to invoke the service + * @param serviceName the name of the service to invoke + * @return a ServiceReference that will invoke this component + */ + ServiceReference createSelfReference(Class businessInterface, String serviceName); + + /** + * Returns the context for the current SCA service request, or null if there is no current request + * or if the context is unavailable. + * + * @return the SCA request context; may be null + */ + RequestContext getRequestContext(); +} diff --git a/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/Conversation.java b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/Conversation.java new file mode 100644 index 0000000000..37073adc77 --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/Conversation.java @@ -0,0 +1,20 @@ +package org.osoa.sca; + +/** + * @version $Rev$ $Date$ + */ +public interface Conversation { + /** + * Returns the identifier for this conversation. + * If a user-defined identity had been supplied for this reference then its value will be returned; + * otherwise the identity generated by the system when the conversation was initiated will be returned. + * + * @return the identifier for this conversation + */ + Object getConversionID(); + + /** + * End this conversation. + */ + void end(); +} diff --git a/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/ConversationEndedException.java b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/ConversationEndedException.java new file mode 100644 index 0000000000..63e3907cff --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/ConversationEndedException.java @@ -0,0 +1,67 @@ +/* + * 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.osoa.sca; + +/** + * Exception thrown to indicate the conversation being used for a stateful interaction has been ended. + * + * @version $Rev$ $Date$ + */ +public class ConversationEndedException extends ServiceRuntimeException { + private static final long serialVersionUID = 3734864942222558406L; + + /** + * Override constructor from ServiceRuntimeException. + * + * @see ServiceRuntimeException + */ + public ConversationEndedException() { + } + + /** + * Override constructor from ServiceRuntimeException. + * + * @param message passed to ServiceRuntimeException + * @see ServiceRuntimeException + */ + public ConversationEndedException(String message) { + super(message); + } + + /** + * Override constructor from ServiceRuntimeException. + * + * @param message passed to ServiceRuntimeException + * @param cause passed to ServiceRuntimeException + * @see ServiceRuntimeException + */ + public ConversationEndedException(String message, Throwable cause) { + super(message, cause); + } + + /** + * Override constructor from ServiceRuntimeException. + * + * @param cause passed to ServiceRuntimeException + * @see ServiceRuntimeException + */ + public ConversationEndedException(Throwable cause) { + super(cause); + } +} diff --git a/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/NoRegisteredCallbackException.java b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/NoRegisteredCallbackException.java new file mode 100644 index 0000000000..7c067a3a43 --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/NoRegisteredCallbackException.java @@ -0,0 +1,68 @@ +/* + * 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.osoa.sca; + +/** + * Exception thrown to indicate that no callback has been registered + * when interacting with a service. + * + * @version $Rev$ $Date$ + */ +public class NoRegisteredCallbackException extends ServiceRuntimeException { + private static final long serialVersionUID = 3734864942222558406L; + + /** + * Override constructor from ServiceRuntimeException. + * + * @see ServiceRuntimeException + */ + public NoRegisteredCallbackException() { + } + + /** + * Override constructor from ServiceRuntimeException. + * + * @param message passed to ServiceRuntimeException + * @see ServiceRuntimeException + */ + public NoRegisteredCallbackException(String message) { + super(message); + } + + /** + * Override constructor from ServiceRuntimeException. + * + * @param message passed to ServiceRuntimeException + * @param cause passed to ServiceRuntimeException + * @see ServiceRuntimeException + */ + public NoRegisteredCallbackException(String message, Throwable cause) { + super(message, cause); + } + + /** + * Override constructor from ServiceRuntimeException. + * + * @param cause passed to ServiceRuntimeException + * @see ServiceRuntimeException + */ + public NoRegisteredCallbackException(Throwable cause) { + super(cause); + } +} diff --git a/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/ReferenceFactory.java b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/ReferenceFactory.java new file mode 100644 index 0000000000..05144874a0 --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/ReferenceFactory.java @@ -0,0 +1,20 @@ +package org.osoa.sca; + +/** + * @version $Rev$ $Date$ + */ +public interface ReferenceFactory { + /** + * Returns the name of the reference associated with this factory. + * + * @return the name of the reference associated with this factory + */ + String getName(); + + /** + * Create a new ServiceReference for the reference associated with this factory. + * + * @return a new ServiceReference that can be used access the reference + */ + ServiceReference newReference(); +} diff --git a/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/RequestContext.java b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/RequestContext.java new file mode 100644 index 0000000000..9e8c335896 --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/RequestContext.java @@ -0,0 +1,49 @@ +/* + * 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.osoa.sca; + +import javax.security.auth.Subject; + +/** + * Interface that provides information on the current request. + * + * @version $Rev$ $Date$ + */ +public interface RequestContext { + /** + * Returns the JAAS Subject of the current request. + * + * @return the Subject of the current request + */ + Subject getSecuritySubject(); + + /** + * Returns the name of the service that was invoked. + * + * @return the name of the service that was invoked + */ + String getServiceName(); + + /** + * Returns a ServiceReference to the service that was invoked. + * + * @return a ServiceReference to the service that was invoked + */ + ServiceReference getServiceReference(); +} diff --git a/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/ServiceReference.java b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/ServiceReference.java new file mode 100644 index 0000000000..0841b8b2c7 --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/ServiceReference.java @@ -0,0 +1,102 @@ +/* + * 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.osoa.sca; + + +/** + * A ServiceReference represents a client's perspective of a reference to another service. + * + * @version $Rev$ $Date$ + */ +public interface ServiceReference { + /** + * Returns a type-safe reference to the target of this reference. + * The instance returned is guaranteed to implement the business interface for this reference + * but may not be a proxy as defined by java.lang.reflect.Proxy. + * + * @return a proxy to the target that implements the business interface associated with this reference + */ + B getService(); + + /** + * Returns the Java class for the business interface associated with this reference. + * + * @return the Class for the business interface associated with this reference + */ + Class getBusinessInterface(); + + /** + * Returns true if this reference is conversational. + * + * @return true if this reference is conversational + */ + boolean isConversational(); + + /** + * Returns the current conversation associated with this reference. + * + * @return the current conversation associated with this reference; null if there is no active conversation + * @throws IllegalStateException if this reference is not conversational + */ + Conversation getConversation() throws IllegalStateException; + + /** + * Returns the id supplied by the user that will be associated with conversations initiated through this reference. + * + * @return the id to associated with any conversation initiated through this reference + */ + Object getConversationID(); + + /** + * Set the id to associate with any conversation started through this reference. + * If the value supplied is null then the id will be generated by the implementation. + * + * @param conversationId the user-defined id to associated with a conversation + * @throws IllegalStateException if a conversation is currently associated with this reference + */ + void setConversationID(Object conversationId) throws IllegalStateException; + + /** + * Returns the callback ID. + * + * @return the callback ID + */ + Object getCallbackID(); + + /** + * Sets the callback ID. + * + * @param callbackID the callback ID + */ + void setCallbackID(Object callbackID); + + /** + * Returns the callback object. + * + * @return the callback object + */ + Object getCallback(); + + /** + * Sets the callback object. + * + * @param callback the callback object + */ + void setCallback(Object callback); +} diff --git a/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/ServiceRuntimeException.java b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/ServiceRuntimeException.java new file mode 100644 index 0000000000..1c6b436afa --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/ServiceRuntimeException.java @@ -0,0 +1,69 @@ +/* + * 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.osoa.sca; + + +/** + * Base for Exceptions that may be raised by an SCA runtime and which typical + * application code is not expected to be able to handle. + * + * @version $Rev$ $Date$ + */ +public class ServiceRuntimeException extends RuntimeException { + private static final long serialVersionUID = -3876058842262557092L; + + /** + * Override constructor from RuntimeException. + * + * @see RuntimeException + */ + public ServiceRuntimeException() { + } + + /** + * Override constructor from RuntimeException. + * + * @param message passed to RuntimeException + * @see RuntimeException + */ + public ServiceRuntimeException(String message) { + super(message); + } + + /** + * Override constructor from RuntimeException. + * + * @param message passed to RuntimeException + * @param cause passed to RuntimeException + * @see RuntimeException + */ + public ServiceRuntimeException(String message, Throwable cause) { + super(message, cause); + } + + /** + * Override constructor from RuntimeException. + * + * @param cause passed to RuntimeException + * @see RuntimeException + */ + public ServiceRuntimeException(Throwable cause) { + super(cause); + } +} diff --git a/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/ServiceUnavailableException.java b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/ServiceUnavailableException.java new file mode 100644 index 0000000000..d3543799ed --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/ServiceUnavailableException.java @@ -0,0 +1,65 @@ +/* + * 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.osoa.sca; + +/** + * Exception used to indicate that a runtime exception occurred during the invocation of and external service. + * + * @version $Rev$ $Date$ + */ +public class ServiceUnavailableException extends ServiceRuntimeException { + + private static final long serialVersionUID = -5869397223249401047L; + + /** + * Constructs a new ServiceUnavailableException. + */ + public ServiceUnavailableException() { + super((Throwable) null); + } + + /** + * Constructs a new ServiceUnavailableException with the specified detail message. + * + * @param message The detail message (which is saved to later retrieval by the getMessage() method). + */ + public ServiceUnavailableException(String message) { + super(message); + } + + /** + * Constructs a new ServiceUnavailableException with the specified cause. + * + * @param cause The cause (which is saved to later retrieval by the getCause() method). + */ + public ServiceUnavailableException(Throwable cause) { + super(cause); + } + + /** + * Constructs a new ServiceUnavailableException with the specified detail message and cause. + * + * @param message The message (which is saved to later retrieval by the getMessage() method). + * @param cause The cause (which is saved to later retrieval by the getCause() method). + */ + public ServiceUnavailableException(String message, Throwable cause) { + super(message, cause); + } + +} diff --git a/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/Version.java b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/Version.java new file mode 100644 index 0000000000..76034f3a2c --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/Version.java @@ -0,0 +1,45 @@ +/* + * 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.osoa.sca; + +/** + * Class providing information on the version of the specification + * supported by these API classes. + * + * @version $Rev$ $Date$ + */ +public final class Version { + /** + * Identifier for version 1.0 + */ + public static final String VERSION_1_0 = "1.0"; + + /** + * Identifier for the XML Namespace for version 1.0 + */ + public static final String XML_NAMESPACE_1_0 = "http://www.osoa.org/xmlns/sca/1.0"; + + /** + * The specification version of these API classes. + */ + public static final String API_VERSION = VERSION_1_0; + + private Version() { + } +} diff --git a/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/AllowsPassByReference.java b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/AllowsPassByReference.java new file mode 100644 index 0000000000..dcf16126da --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/AllowsPassByReference.java @@ -0,0 +1,38 @@ +/* + * 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.osoa.sca.annotations; + +import static java.lang.annotation.ElementType.METHOD; +import static java.lang.annotation.ElementType.TYPE; +import java.lang.annotation.Retention; +import static java.lang.annotation.RetentionPolicy.RUNTIME; +import java.lang.annotation.Target; + +/** + * Annotation on a method that indicates that its parameters may safely + * be passed by reference. The annotation may also be placed on an interface + * or class to indicate that all declared methods support this optimization. + * + * @version $Rev$ $Date$ + */ +@Target({TYPE, METHOD}) +@Retention(RUNTIME) +public @interface AllowsPassByReference { +} + diff --git a/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Callback.java b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Callback.java new file mode 100644 index 0000000000..dbfdce7e7c --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Callback.java @@ -0,0 +1,44 @@ +/* + * 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.osoa.sca.annotations; + +import static java.lang.annotation.ElementType.FIELD; +import static java.lang.annotation.ElementType.METHOD; +import static java.lang.annotation.ElementType.TYPE; +import java.lang.annotation.Retention; +import static java.lang.annotation.RetentionPolicy.RUNTIME; +import java.lang.annotation.Target; + +/** + * When placed on a service interface, this annotation specifies the interface + * to be used for callbacks. + *

+ * When placed on a method or field, this annotation denotes the injection + * site to be used for a callback reference. + * + * @version $Rev$ $Date$ + */ +@Target({TYPE, METHOD, FIELD}) +@Retention(RUNTIME) +public @interface Callback { + /** + * The Class of the callback interface. + */ + Class value() default Void.class; +} diff --git a/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/ComponentID.java b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/ComponentID.java new file mode 100644 index 0000000000..1629ca5714 --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/ComponentID.java @@ -0,0 +1,44 @@ +/* + * 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.osoa.sca.annotations; + +import static java.lang.annotation.ElementType.FIELD; +import static java.lang.annotation.ElementType.METHOD; +import static java.lang.annotation.ElementType.PARAMETER; +import java.lang.annotation.Retention; +import static java.lang.annotation.RetentionPolicy.RUNTIME; +import java.lang.annotation.Target; + +/** + * Annotation used to indicate an injection site for the SCA identity of a component. + * Every component in a SCA Domain has a unique identity that derived from the base URI of the domain. + * This annotation can be used to indicate to the container that a component implemention requires that + * its identity be injected. The annotation can be applied to: + *

    + *
  • a public or protected field with type @{link java.lang.String} or @{link java.net.URI}
  • + *
  • a public or protected method with a single parameter with type @{link java.lang.String} or @{link java.net.URI}
  • + *
  • a parameter of a public constructor with type @{link java.lang.String} or @{link java.net.URI}
  • + *
+ * + * @version $Rev$ $Date$ + */ +@Target({METHOD, FIELD, PARAMETER}) +@Retention(RUNTIME) +public @interface ComponentID { +} diff --git a/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Constructor.java b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Constructor.java new file mode 100644 index 0000000000..8480b38926 --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Constructor.java @@ -0,0 +1,35 @@ +/* + * 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.osoa.sca.annotations; + +import static java.lang.annotation.ElementType.CONSTRUCTOR; +import java.lang.annotation.Retention; +import static java.lang.annotation.RetentionPolicy.RUNTIME; +import java.lang.annotation.Target; + +/** + * Used to indicate the constructor the runtime is to use when instantiating a component implementation instance + * + * @version $Rev$ $Date$ + */ +@Target(CONSTRUCTOR) +@Retention(RUNTIME) +public @interface Constructor { + String[] value() default ""; +} diff --git a/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Context.java b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Context.java new file mode 100644 index 0000000000..93f6710578 --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Context.java @@ -0,0 +1,36 @@ +/* + * 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.osoa.sca.annotations; + +import static java.lang.annotation.ElementType.FIELD; +import static java.lang.annotation.ElementType.METHOD; +import java.lang.annotation.Retention; +import static java.lang.annotation.RetentionPolicy.RUNTIME; +import java.lang.annotation.Target; + +/** + * Annotation used to indicate a field or method that is used to inject the component's CompositeContext. + * + * @version $Rev$ $Date$ + */ +@Target({METHOD, FIELD}) +@Retention(RUNTIME) +public @interface Context { +} + diff --git a/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Conversation.java b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Conversation.java new file mode 100644 index 0000000000..fe57e7a9c6 --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Conversation.java @@ -0,0 +1,51 @@ +/* + * 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.osoa.sca.annotations; + +import static java.lang.annotation.ElementType.TYPE; +import java.lang.annotation.Retention; +import static java.lang.annotation.RetentionPolicy.RUNTIME; +import java.lang.annotation.Target; + +/** + * Annotation used to indicate the characteristics of a conversation. + * + * @version $Rev$ $Date$ + */ +@Target(TYPE) +@Retention(RUNTIME) +public @interface Conversation { + /** + * The maximum time that can pass between operations in a single conversation. + * If this time is exceeded the container may end the conversation. + */ + public String maxIdleTime() default ""; + + /** + * The maximum time that a conversation may remain active. + * If this time is exceeded the container may end the conversation. + */ + public String maxAge() default ""; + + /** + * If true, indicates that only the user that initiated the conversation + * has the authority to continue it. + */ + public boolean singlePrincipal() default false; +} diff --git a/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/ConversationID.java b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/ConversationID.java new file mode 100644 index 0000000000..e521b91797 --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/ConversationID.java @@ -0,0 +1,35 @@ +/* + * 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.osoa.sca.annotations; + +import static java.lang.annotation.ElementType.FIELD; +import static java.lang.annotation.ElementType.METHOD; +import java.lang.annotation.Retention; +import static java.lang.annotation.RetentionPolicy.RUNTIME; +import java.lang.annotation.Target; + +/** + * Annotation used to indicate a field or method that is used to inject the conversation ID. + * + * @version $Rev$ $Date$ + */ +@Target({METHOD, FIELD}) +@Retention(RUNTIME) +public @interface ConversationID { +} diff --git a/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Destroy.java b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Destroy.java new file mode 100644 index 0000000000..0a81dbe14c --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Destroy.java @@ -0,0 +1,35 @@ +/* + * 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.osoa.sca.annotations; + +import static java.lang.annotation.ElementType.METHOD; +import java.lang.annotation.Retention; +import static java.lang.annotation.RetentionPolicy.RUNTIME; +import java.lang.annotation.Target; + +/** + * Annotation used to indicate a method that will be called by the container when the + * scope defined for the local service ends. + * + * @version $Rev$ $Date$ + */ +@Target(METHOD) +@Retention(RUNTIME) +public @interface Destroy { +} diff --git a/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/EagerInit.java b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/EagerInit.java new file mode 100644 index 0000000000..7fb9885fb4 --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/EagerInit.java @@ -0,0 +1,43 @@ +/* + * 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.osoa.sca.annotations; + +import static java.lang.annotation.ElementType.TYPE; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +/** + * Annotation used to indicate an instance should be eagerly initialized. + * + * @version $Rev$ $Date$ + */ +@Target({TYPE}) +@Retention(RetentionPolicy.RUNTIME) +public @interface EagerInit { + + /** + * A Tuscany-specific extension for specifying the component's initialization order, with lesser values given + * precedence. A value of 0 indicates the component should not be initialized eagerly. + * + * @return the component initalization level + */ + public int value() default 50; + +} diff --git a/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/EndConversation.java b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/EndConversation.java new file mode 100644 index 0000000000..6e3357f954 --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/EndConversation.java @@ -0,0 +1,34 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package org.osoa.sca.annotations; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +/** + * Annotation used to indicate a method ends a conversation. + * + * @version $Rev$ $Date$ + */ +@Target({ElementType.METHOD}) +@Retention(RetentionPolicy.RUNTIME) +public @interface EndConversation { +} diff --git a/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Init.java b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Init.java new file mode 100644 index 0000000000..957bec262c --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Init.java @@ -0,0 +1,36 @@ +/* + * 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.osoa.sca.annotations; + +import static java.lang.annotation.ElementType.METHOD; +import java.lang.annotation.Retention; +import static java.lang.annotation.RetentionPolicy.RUNTIME; +import java.lang.annotation.Target; + +/** + * Annotation used to indicate a method that will be called by the container when the scope defined for the local + * service begins. + * + * @version $Rev$ $Date$ + */ +@Target(METHOD) +@Retention(RUNTIME) +public @interface Init { + +} diff --git a/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/OneWay.java b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/OneWay.java new file mode 100644 index 0000000000..37fbaf96cd --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/OneWay.java @@ -0,0 +1,35 @@ +/* + * 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.osoa.sca.annotations; + +import static java.lang.annotation.ElementType.METHOD; +import java.lang.annotation.Retention; +import static java.lang.annotation.RetentionPolicy.RUNTIME; +import java.lang.annotation.Target; + +/** + * Annotation on a method that indicates that the method is non-blocking and communication + * with the service provider may use buffer the requests and send them at some later time. + * + * @version $Rev$ $Date$ + */ +@Target({METHOD}) +@Retention(RUNTIME) +public @interface OneWay { +} diff --git a/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Property.java b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Property.java new file mode 100644 index 0000000000..ace1252c0b --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Property.java @@ -0,0 +1,53 @@ +/* + * 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.osoa.sca.annotations; + +import static java.lang.annotation.ElementType.FIELD; +import static java.lang.annotation.ElementType.METHOD; +import static java.lang.annotation.ElementType.PARAMETER; +import java.lang.annotation.Retention; +import static java.lang.annotation.RetentionPolicy.RUNTIME; +import java.lang.annotation.Target; + +/** + * Annotation used to indicate a constructor parameter, field or method that is + * used to inject a configuration property value. + * + * @version $Rev$ $Date$ + */ +@Target({METHOD, FIELD, PARAMETER}) +@Retention(RUNTIME) +public @interface Property { + /** + * The name of the property. If not specified then the name will be derived + * from the annotated field. + */ + public String name() default ""; + + /** + * Indicates if a value must be specified. + */ + public String override() default "may"; + + /** + * The XML Type in a QName format + */ + public String xmlType() default ""; + +} diff --git a/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Reference.java b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Reference.java new file mode 100644 index 0000000000..7fceafadf3 --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Reference.java @@ -0,0 +1,46 @@ +/* + * 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.osoa.sca.annotations; + +import static java.lang.annotation.ElementType.FIELD; +import static java.lang.annotation.ElementType.METHOD; +import static java.lang.annotation.ElementType.PARAMETER; +import java.lang.annotation.Retention; +import static java.lang.annotation.RetentionPolicy.RUNTIME; +import java.lang.annotation.Target; + +/** + * Annotation used to indicate a constructor parameter, field or method that is used to inject a reference. + * + * @version $Rev$ $Date$ + */ +@Target({METHOD, FIELD, PARAMETER}) +@Retention(RUNTIME) +public @interface Reference { + /** + * The name of the reference. If not specified then the name will be derived from the annotated field. + */ + public String name() default ""; + + /** + * Indicates if a reference must be specified. + */ + public boolean required() default false; +} + diff --git a/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Remotable.java b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Remotable.java new file mode 100644 index 0000000000..f447a4126d --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Remotable.java @@ -0,0 +1,36 @@ +/* + * 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.osoa.sca.annotations; + +import static java.lang.annotation.ElementType.TYPE; +import java.lang.annotation.Retention; +import static java.lang.annotation.RetentionPolicy.RUNTIME; +import java.lang.annotation.Target; + +/** + * Annotation used to indicate a Java interface as remotable. + * Remotable interfaces use pass-by-value semantics, can be published as entry points + * and used for external services. + * + * @version $Rev$ $Date$ + */ +@Target(TYPE) +@Retention(RUNTIME) +public @interface Remotable { +} diff --git a/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Resource.java b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Resource.java new file mode 100644 index 0000000000..fff6dfaed2 --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Resource.java @@ -0,0 +1,49 @@ +/* + * 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.osoa.sca.annotations; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +/** + * Annotation used to indicate a resource should be provided to an implementation by the runtime. + * + * @version $Rev$ $Date$ + */ +@Target({ElementType.FIELD, ElementType.METHOD, ElementType.PARAMETER}) +@Retention(RetentionPolicy.RUNTIME) +public @interface Resource { + + /** + * Denotes the name of the resource declared by the implementation. + */ + public String name() default ""; + + /** + * Denotes if the resource is optional + */ + public boolean optional() default false; + + /** + * Denotes the default name of the resource provided by the runtime environment. + */ + public String mappedName() default ""; +} diff --git a/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Scope.java b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Scope.java new file mode 100644 index 0000000000..6f952d489c --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Scope.java @@ -0,0 +1,45 @@ +/* + * 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.osoa.sca.annotations; + +import static java.lang.annotation.ElementType.TYPE; +import java.lang.annotation.Retention; +import static java.lang.annotation.RetentionPolicy.RUNTIME; +import java.lang.annotation.Target; + +/** + * Annotation used to indicate a scoped service. + * + * @version $Rev$ $Date$ + */ +@Target(TYPE) +@Retention(RUNTIME) +public @interface Scope { + /** + * The name of the scope. Values currently defined by the specification are: + *
    + *
  • stateless (default)
  • + *
  • request
  • + *
  • session
  • + *
  • module
  • + *
  • conversation
  • + *
+ */ + String value() default "STATELESS"; +} diff --git a/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Service.java b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Service.java new file mode 100644 index 0000000000..5dd4ffb72f --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/java/org/osoa/sca/annotations/Service.java @@ -0,0 +1,43 @@ +/* + * 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.osoa.sca.annotations; + +import static java.lang.annotation.ElementType.TYPE; +import java.lang.annotation.Retention; +import static java.lang.annotation.RetentionPolicy.RUNTIME; +import java.lang.annotation.Target; + +/** + * Annotation used to indicate the service interfaces exposed by a Java class. + * + * @version $Rev$ $Date$ + */ +@Target({TYPE}) +@Retention(RUNTIME) +public @interface Service { + /** + * Array of interfaces that should be exposed as services. + */ + Class[] interfaces() default {}; + + /** + * Shortcut allowing a single interface to be exposed. + */ + Class value() default Void.class; +} diff --git a/sandbox/jboynes/sca-client/src/main/resources/schemas/sca-binding-sca.xsd b/sandbox/jboynes/sca-client/src/main/resources/schemas/sca-binding-sca.xsd new file mode 100644 index 0000000000..a501639e78 --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/resources/schemas/sca-binding-sca.xsd @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + diff --git a/sandbox/jboynes/sca-client/src/main/resources/schemas/sca-binding-webservice.xsd b/sandbox/jboynes/sca-client/src/main/resources/schemas/sca-binding-webservice.xsd new file mode 100644 index 0000000000..0ddaf95697 --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/resources/schemas/sca-binding-webservice.xsd @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/jboynes/sca-client/src/main/resources/schemas/sca-core.xsd b/sandbox/jboynes/sca-client/src/main/resources/schemas/sca-core.xsd new file mode 100644 index 0000000000..fad0304c0d --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/resources/schemas/sca-core.xsd @@ -0,0 +1,233 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/jboynes/sca-client/src/main/resources/schemas/sca-implementation-java.xsd b/sandbox/jboynes/sca-client/src/main/resources/schemas/sca-implementation-java.xsd new file mode 100644 index 0000000000..1395086cc5 --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/resources/schemas/sca-implementation-java.xsd @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/jboynes/sca-client/src/main/resources/schemas/sca-interface-java.xsd b/sandbox/jboynes/sca-client/src/main/resources/schemas/sca-interface-java.xsd new file mode 100644 index 0000000000..113176a545 --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/resources/schemas/sca-interface-java.xsd @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/jboynes/sca-client/src/main/resources/schemas/sca-interface-wsdl.xsd b/sandbox/jboynes/sca-client/src/main/resources/schemas/sca-interface-wsdl.xsd new file mode 100644 index 0000000000..5114c8db06 --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/resources/schemas/sca-interface-wsdl.xsd @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/jboynes/sca-client/src/main/resources/schemas/sca.xsd b/sandbox/jboynes/sca-client/src/main/resources/schemas/sca.xsd new file mode 100644 index 0000000000..62b1c265d0 --- /dev/null +++ b/sandbox/jboynes/sca-client/src/main/resources/schemas/sca.xsd @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + diff --git a/sandbox/jboynes/sca-client/src/test/java/org/osoa/sca/annotations/CallbackTestCase.java b/sandbox/jboynes/sca-client/src/test/java/org/osoa/sca/annotations/CallbackTestCase.java new file mode 100644 index 0000000000..c4506713f6 --- /dev/null +++ b/sandbox/jboynes/sca-client/src/test/java/org/osoa/sca/annotations/CallbackTestCase.java @@ -0,0 +1,70 @@ +/* + * 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.osoa.sca.annotations; + +import java.lang.reflect.Field; +import java.lang.reflect.Method; + +import junit.framework.TestCase; +import org.osoa.sca.annotations.usage.CallbackType; + +/** + * Test case for callback annotation. + * + * @version $Rev$ $Date$ + */ +public class CallbackTestCase extends TestCase { + private Class type; + private Field field; + private Method method; + + /** + * Test annotation of a callback interface. + */ + public void testTypeDeclaration() { + assertTrue(type.isAnnotationPresent(Callback.class)); + Callback callback = type.getAnnotation(Callback.class); + assertEquals(Object.class, callback.value()); + } + + /** + * Test annotation of a private field. + */ + public void testField() { + assertTrue(field.isAnnotationPresent(Callback.class)); + Callback callback = field.getAnnotation(Callback.class); + assertEquals(Void.class, callback.value()); + } + + /** + * Test annotation of a method. + */ + public void testMethod() { + assertTrue(method.isAnnotationPresent(Callback.class)); + Callback callback = method.getAnnotation(Callback.class); + assertEquals(Void.class, callback.value()); + } + + protected void setUp() throws Exception { + super.setUp(); + type = CallbackType.class; + field = type.getDeclaredField("cbField"); + method = type.getMethod("cbMethod"); + } +} diff --git a/sandbox/jboynes/sca-client/src/test/java/org/osoa/sca/annotations/usage/CallbackType.java b/sandbox/jboynes/sca-client/src/test/java/org/osoa/sca/annotations/usage/CallbackType.java new file mode 100644 index 0000000000..962c7bef51 --- /dev/null +++ b/sandbox/jboynes/sca-client/src/test/java/org/osoa/sca/annotations/usage/CallbackType.java @@ -0,0 +1,49 @@ +/* + * 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.osoa.sca.annotations.usage; + +import org.osoa.sca.annotations.Callback; + +/** + * Mock object for callback annotation tests. + * + * @version $Rev$ $Date$ + */ +@Callback(Object.class) +public class CallbackType { + @Callback + private Object cbField; + + /** + * Site for testing annotation of a public method. + */ + @Callback + public void cbMethod() { + cbField = new Object(); + } + + /** + * Mock method to make IDEs stop complaining. + * + * @return nothing + */ + public Object getCbField() { + return cbField; + } +} diff --git a/sandbox/jboynes/sca-client/src/test/java/sample/HelloCallback.java b/sandbox/jboynes/sca-client/src/test/java/sample/HelloCallback.java new file mode 100644 index 0000000000..9efa48d500 --- /dev/null +++ b/sandbox/jboynes/sca-client/src/test/java/sample/HelloCallback.java @@ -0,0 +1,8 @@ +package sample; + +/** + * @version $Rev$ $Date$ + */ +public interface HelloCallback { + String getLocale(); +} diff --git a/sandbox/jboynes/sca-client/src/test/java/sample/HelloService.java b/sandbox/jboynes/sca-client/src/test/java/sample/HelloService.java new file mode 100644 index 0000000000..cea12771a8 --- /dev/null +++ b/sandbox/jboynes/sca-client/src/test/java/sample/HelloService.java @@ -0,0 +1,8 @@ +package sample; + +/** + * @version $Rev$ $Date$ + */ +public interface HelloService { + String hello(String message); +} diff --git a/sandbox/jboynes/sca-client/src/test/java/sample/client/BasicClient.java b/sandbox/jboynes/sca-client/src/test/java/sample/client/BasicClient.java new file mode 100644 index 0000000000..6565a6a5f7 --- /dev/null +++ b/sandbox/jboynes/sca-client/src/test/java/sample/client/BasicClient.java @@ -0,0 +1,38 @@ +package sample.client; + +import org.osoa.sca.ComponentContext; +import org.osoa.sca.ServiceReference; +import sample.HelloService; + +/** + * @version $Rev$ $Date$ + */ +public class BasicClient { + private ComponentContext context; + + public void useComponentDirectly() { + HelloService helloService = context.getService(HelloService.class, "helloService"); + helloService.hello("World"); + } + + public void useComponentViaReference() { + ServiceReference ref = context.getServiceReference(HelloService.class, "helloService"); + HelloService helloService = ref.getService(); + helloService.hello("World"); + + ServiceReference ref2 = context.cast(helloService); + } + + public void useReferenceDirectly() { + HelloService helloService = context.getService(HelloService.class, "helloReference"); + helloService.hello("World"); + } + + public void useReferenceViaReference() { + ServiceReference ref = context.getServiceReference(HelloService.class, "helloReference"); + HelloService helloService = ref.getService(); + helloService.hello("World"); + + ServiceReference ref2 = context.cast(helloService); + } +} diff --git a/sandbox/jboynes/sca-client/src/test/java/sample/client/ReallyBasicClient.java b/sandbox/jboynes/sca-client/src/test/java/sample/client/ReallyBasicClient.java new file mode 100644 index 0000000000..f2ef857166 --- /dev/null +++ b/sandbox/jboynes/sca-client/src/test/java/sample/client/ReallyBasicClient.java @@ -0,0 +1,34 @@ +package sample.client; + +import org.osoa.sca.ComponentContext; +import sample.HelloService; + +/** + * @version $Rev$ $Date$ + */ +public class ReallyBasicClient { + /** + * + * + * + * + * + * + * + * + * + * + */ + public static void main(String[] args) { + ComponentContext context = getComponentContext(); + + // access a service through its reference + HelloService helloService = context.getService(HelloService.class, "helloService"); + helloService.hello("World"); + } + + public static ComponentContext getComponentContext() { + // implementation defined mechanism to retrieve appropriate ComponentContext + throw new UnsupportedOperationException(); + } +} diff --git a/sandbox/jboynes/sca-client/src/test/resources/META-INF/services/org.osoa.sca.DomainFactory b/sandbox/jboynes/sca-client/src/test/resources/META-INF/services/org.osoa.sca.DomainFactory new file mode 100644 index 0000000000..16bd6dd70d --- /dev/null +++ b/sandbox/jboynes/sca-client/src/test/resources/META-INF/services/org.osoa.sca.DomainFactory @@ -0,0 +1 @@ +org.osoa.sca.DelegatingDomainFactory -- cgit v1.2.3