summaryrefslogtreecommitdiffstats
path: root/tags/java/sca/2.0-M4-RC2/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/MutualAuthentication.java
diff options
context:
space:
mode:
authorlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-11-11 23:23:10 +0000
committerlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-11-11 23:23:10 +0000
commit5e78e2a84f0cfcf141f48e58404e8c21c061b079 (patch)
tree35ee0facbc518960994816c1097d3b08bdd5ff9a /tags/java/sca/2.0-M4-RC2/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/MutualAuthentication.java
parent52cf4b8e3f99706027da5c1363292a2aae59d87d (diff)
Moving 2.x tags
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@835154 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'tags/java/sca/2.0-M4-RC2/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/MutualAuthentication.java')
-rw-r--r--tags/java/sca/2.0-M4-RC2/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/MutualAuthentication.java30
1 files changed, 0 insertions, 30 deletions
diff --git a/tags/java/sca/2.0-M4-RC2/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/MutualAuthentication.java b/tags/java/sca/2.0-M4-RC2/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/MutualAuthentication.java
deleted file mode 100644
index d0825cd8e3..0000000000
--- a/tags/java/sca/2.0-M4-RC2/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/MutualAuthentication.java
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * 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.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 @MutualAuthentication annotation is used to indicate that
- * a mutual authentication policy is needed.
- */
-@Inherited
-@Target({TYPE, FIELD, METHOD, PARAMETER})
-@Retention(RUNTIME)
-@Intent(MutualAuthentication.MUTUALAUTHENTICATION)
-public @interface MutualAuthentication {
- String MUTUALAUTHENTICATION = SCA_PREFIX + "mutualAuthentication";
-}
-
-