summaryrefslogtreecommitdiffstats
path: root/java/sca-contrib/modules/sca-api-osoa/src/main/java/org/osoa/sca/annotations/ComponentName.java
diff options
context:
space:
mode:
authorlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-11-12 00:43:48 +0000
committerlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-11-12 00:43:48 +0000
commit9425990f532b1152c2d73db96c0f07ef5216a3d1 (patch)
treea8986fc31f96eb02484a0ae9d1c14cfa788e30ac /java/sca-contrib/modules/sca-api-osoa/src/main/java/org/osoa/sca/annotations/ComponentName.java
parent40523f9c6cb1f7a785c2dbd2466dc410ae6ddf66 (diff)
Moving 2.x contribs
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@835178 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca-contrib/modules/sca-api-osoa/src/main/java/org/osoa/sca/annotations/ComponentName.java')
-rw-r--r--java/sca-contrib/modules/sca-api-osoa/src/main/java/org/osoa/sca/annotations/ComponentName.java25
1 files changed, 0 insertions, 25 deletions
diff --git a/java/sca-contrib/modules/sca-api-osoa/src/main/java/org/osoa/sca/annotations/ComponentName.java b/java/sca-contrib/modules/sca-api-osoa/src/main/java/org/osoa/sca/annotations/ComponentName.java
deleted file mode 100644
index bc73d22c9d..0000000000
--- a/java/sca-contrib/modules/sca-api-osoa/src/main/java/org/osoa/sca/annotations/ComponentName.java
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * (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.osoa.sca.annotations;
-
-import static java.lang.annotation.ElementType.FIELD;
-import static java.lang.annotation.ElementType.METHOD;
-import static java.lang.annotation.RetentionPolicy.RUNTIME;
-
-import java.lang.annotation.Retention;
-import java.lang.annotation.Target;
-
-/**
- * Annotation used to indicate a field or method that is used to inject the component's name.
- *
- * @version $Rev$ $Date$
- */
-@Target({METHOD, FIELD})
-@Retention(RUNTIME)
-public @interface ComponentName {
-}