summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/tags/2.0-M5.1/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/EagerInit.java
diff options
context:
space:
mode:
authorlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2010-10-04 14:44:27 +0000
committerlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2010-10-04 14:44:27 +0000
commit56f0d297c6eba38d5187431ed9319a97ff5d6094 (patch)
tree5802eea185b5a00b3f2e8488ec008fede4fad8f5 /sca-java-2.x/tags/2.0-M5.1/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/EagerInit.java
parentb50b5bc26a1e15226ad6ec1fa626c75179f68706 (diff)
Rename 2.0-M5.1 release tag
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1004265 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/tags/2.0-M5.1/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/EagerInit.java')
-rw-r--r--sca-java-2.x/tags/2.0-M5.1/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/EagerInit.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/sca-java-2.x/tags/2.0-M5.1/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/EagerInit.java b/sca-java-2.x/tags/2.0-M5.1/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/EagerInit.java
new file mode 100644
index 0000000000..e4cd03ea4b
--- /dev/null
+++ b/sca-java-2.x/tags/2.0-M5.1/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/EagerInit.java
@@ -0,0 +1,22 @@
+/*
+ * Copyright(C) OASIS(R) 2005,2010. All Rights Reserved.
+ * OASIS trademark, IPR and other policies apply.
+ */
+package org.oasisopen.sca.annotation;
+
+import static java.lang.annotation.ElementType.TYPE;
+import static java.lang.annotation.RetentionPolicy.RUNTIME;
+import java.lang.annotation.Retention;
+import java.lang.annotation.Target;
+
+/**
+ * The @EagerInit annotation is used to annotate the Java class of a
+ * COMPOSITE scoped implementation for eager initialization. When marked
+ * for eager initialization, the composite scoped instance is created
+ * when its containing component is started.
+ */
+@Target(TYPE)
+@Retention(RUNTIME)
+public @interface EagerInit {
+
+}