summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/tags/2.0-Beta3-RC2/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/Constructor.java
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2011-07-28 14:02:47 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2011-07-28 14:02:47 +0000
commit4b11f63d0b9e2a72e019c3a3d603dc9521261e08 (patch)
treec56414fc474e1c6b3a40e930c6e6adfd7d5b3cf0 /sca-java-2.x/tags/2.0-Beta3-RC2/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/Constructor.java
parent3f019b6ccbcd0ab32f10b728d8bf49616a217f91 (diff)
Tag 2.0-Beta3 RC2
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151853 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/tags/2.0-Beta3-RC2/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/Constructor.java')
-rw-r--r--sca-java-2.x/tags/2.0-Beta3-RC2/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/Constructor.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/sca-java-2.x/tags/2.0-Beta3-RC2/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/Constructor.java b/sca-java-2.x/tags/2.0-Beta3-RC2/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/Constructor.java
new file mode 100644
index 0000000000..c1c99de683
--- /dev/null
+++ b/sca-java-2.x/tags/2.0-Beta3-RC2/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/Constructor.java
@@ -0,0 +1,22 @@
+/*
+ * Copyright(C) OASIS(R) 2005,2009. All Rights Reserved.
+ * OASIS trademark, IPR and other policies apply.
+ */
+package org.oasisopen.sca.annotation;
+
+import static java.lang.annotation.ElementType.CONSTRUCTOR;
+import static java.lang.annotation.RetentionPolicy.RUNTIME;
+
+import java.lang.annotation.Retention;
+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 "";
+}