From 04dcd09976ecc5aa2948993b9a9a2d90d239ee44 Mon Sep 17 00:00:00 2001 From: antelder Date: Thu, 28 Jul 2011 10:58:07 +0000 Subject: Delete old beta3 branch as its going to be recreated from the current trunk git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151789 13f79535-47bb-0310-9956-ffa450edef68 --- .../oasisopen/sca/annotation/Authentication.java | 51 ---------------------- 1 file changed, 51 deletions(-) delete mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/Authentication.java (limited to 'sca-java-2.x/branches/2.0-Beta3/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/Authentication.java') diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/Authentication.java b/sca-java-2.x/branches/2.0-Beta3/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/Authentication.java deleted file mode 100644 index 2b18388c8b..0000000000 --- a/sca-java-2.x/branches/2.0-Beta3/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/Authentication.java +++ /dev/null @@ -1,51 +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 static org.oasisopen.sca.Constants.SCA_PREFIX; - -import java.lang.annotation.Inherited; -import java.lang.annotation.Retention; -import java.lang.annotation.Target; - -/** - * The @Authentication annotation is used to indicate that the - * invocation requires authentication. - */ -@Inherited -@Target({TYPE, FIELD, METHOD, PARAMETER}) -@Retention(RUNTIME) -@Intent(Authentication.AUTHENTICATION) -public @interface Authentication { - /** - * The serialized QName of the authentication policy intent, - * for use with the SCA @Requires annotation. - */ - String AUTHENTICATION = SCA_PREFIX + "authentication"; - /** - * The serialized QName of the authentication.message policy - * intent, for use with the SCA @Requires annotation. - */ - String AUTHENTICATION_MESSAGE = AUTHENTICATION + ".message"; - /** - * The serialized QName of the authentication.transport policy - * intent, for use with the SCA @Requires annotation. - */ - String AUTHENTICATION_TRANSPORT = AUTHENTICATION + ".transport"; - - /** - * List of authentication qualifiers (such as "message" - * or "transport"). - * - * @return authentication qualifiers - */ - @Qualifier - String[] value() default ""; -} -- cgit v1.2.3