From e6e918ef537c4aa9802ca27b92e1dc566c2cffda Mon Sep 17 00:00:00 2001 From: antelder Date: Thu, 16 Feb 2012 15:38:34 +0000 Subject: Delete old RC tags git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1245033 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/oasisopen/sca/annotation/Requires.java | 32 ---------------------- 1 file changed, 32 deletions(-) delete mode 100644 sca-java-2.x/tags/2.0-Beta3-RC1/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/Requires.java (limited to 'sca-java-2.x/tags/2.0-Beta3-RC1/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/Requires.java') diff --git a/sca-java-2.x/tags/2.0-Beta3-RC1/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/Requires.java b/sca-java-2.x/tags/2.0-Beta3-RC1/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/Requires.java deleted file mode 100644 index b5d485e016..0000000000 --- a/sca-java-2.x/tags/2.0-Beta3-RC1/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/Requires.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * 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.FIELD; -import static java.lang.annotation.ElementType.METHOD; -import static java.lang.annotation.ElementType.PARAMETER; -import static java.lang.annotation.ElementType.TYPE; -import static java.lang.annotation.RetentionPolicy.RUNTIME; - -import java.lang.annotation.Inherited; -import java.lang.annotation.Retention; -import java.lang.annotation.Target; - -/** - * The @Requires annotation supports general purpose intents - * specified as strings. Users can also define specific intent - * annotations using the @Intent annotation. - */ -@Inherited -@Retention(RUNTIME) -@Target({TYPE, METHOD, FIELD, PARAMETER}) -public @interface Requires { - /** - * Returns the attached intents. - * - * @return the attached intents - */ - String[] value() default ""; -} -- cgit v1.2.3