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:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-11-03 08:26:19 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-11-03 08:26:19 +0000
commita2c3f4546c0c32c3d40c52c81b5fd5131ba19145 (patch)
tree34a20016e47a4de2c8eb44c2b6190e4f73aebad2 /tags/java/sca/2.0-M4-RC2/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/MutualAuthentication.java
parent7a7471c7e4c95b758da192622f7476dce8f0faf8 (diff)
Tag 2.0 M4 RC2
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@832340 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, 30 insertions, 0 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
new file mode 100644
index 0000000000..d0825cd8e3
--- /dev/null
+++ b/tags/java/sca/2.0-M4-RC2/modules/sca-api/src/main/java/org/oasisopen/sca/annotation/MutualAuthentication.java
@@ -0,0 +1,30 @@
+/*
+ * 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";
+}
+
+