From a96291b78e2ed8eccab73c34d40e39c8461cf784 Mon Sep 17 00:00:00 2001 From: antelder Date: Mon, 23 Mar 2009 08:00:07 +0000 Subject: One more test with an sca trunk in the sandbox git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@757343 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/oasisopen/sca/annotation/Callback.java | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 sandbox/ant/sca/trunk/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/Callback.java (limited to 'sandbox/ant/sca/trunk/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/Callback.java') diff --git a/sandbox/ant/sca/trunk/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/Callback.java b/sandbox/ant/sca/trunk/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/Callback.java new file mode 100644 index 0000000000..b8d71dac05 --- /dev/null +++ b/sandbox/ant/sca/trunk/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/Callback.java @@ -0,0 +1,39 @@ +/* + * (c) Copyright BEA Systems, Inc., Cape Clear Software, International Business Machines Corp, Interface21, IONA Technologies, + * Oracle, Primeton Technologies, Progress Software, Red Hat, Rogue Wave Software, SAP AG., Siemens AG., Software AG., Sybase + * Inc., TIBCO Software Inc., 2005, 2007. All rights reserved. + * + * see http://www.osoa.org/display/Main/Service+Component+Architecture+Specifications + */ +package org.oasisopen.sca.annotation; + +import static java.lang.annotation.ElementType.FIELD; +import static java.lang.annotation.ElementType.METHOD; +import static java.lang.annotation.ElementType.TYPE; +import static java.lang.annotation.RetentionPolicy.RUNTIME; + +import java.lang.annotation.Retention; +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. + *

+ * There is a error in the 1.00 draft spec in the declaration of this interface. + * The form defined here is a proposed correction for that error. + * + * @version $Rev$ $Date$ + */ +@Target({TYPE, METHOD, FIELD}) +@Retention(RUNTIME) +public @interface Callback { + /** + * The Class of the associated callback interface. + * + * @return the associated callback interface + */ + Class value() default Void.class; +} -- cgit v1.2.3