[java-opensaml COMMIT] in /trunk: opensaml-saml-api/src/main/java/org/opensaml/saml/common/profile/SAMLEventIds.java ...

noreply at shibboleth.net noreply at shibboleth.net
Tue Jul 15 18:42:16 EDT 2014


Author: scantor
Date: Tue Jul 15 18:42:16 2014
New Revision: 3954

URL: http://svn.shibboleth.net/view/java-opensaml?rev=3954&view=rev
Log:
IDP-414: Add channel binding verification action, error handling.

Added:
    trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/ext/saml2cb/package-info.java   (with props)
    trunk/opensaml-saml-impl/src/main/java/org/opensaml/saml/common/profile/impl/VerifyChannelBindings.java   (with props)
    trunk/opensaml-saml-impl/src/test/java/org/opensaml/saml/common/profile/impl/VerifyChannelBindingsTest.java   (with props)
Modified:
    trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/common/profile/SAMLEventIds.java
    trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/ext/saml2cb/package.html

Modified: trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/common/profile/SAMLEventIds.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/common/profile/SAMLEventIds.java?rev=3954&r1=3953&r2=3954&view=diff
==============================================================================
--- trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/common/profile/SAMLEventIds.java (original)
+++ trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/common/profile/SAMLEventIds.java Tue Jul 15 18:42:16 2014
@@ -27,19 +27,24 @@
  */
 public final class SAMLEventIds {
 
-    /** ID of the event returned upon failure to decrypt an {@link EncryptedAssertion}. */
+    /** ID of the event returned upon failure to verify {@link org.opensaml.saml.ext.saml2cb.ChannelBindings}. */
+    @Nonnull @NotEmpty public static final String CHANNEL_BINDINGS_ERROR = "ChannelBindingsError";
+    
+    /** ID of the event returned upon failure to decrypt an {@link org.opensaml.saml.saml2.core.EncryptedAssertion}. */
     @Nonnull @NotEmpty public static final String DECRYPT_ASSERTION_FAILED = "DecryptAssertionFailed";
 
-    /** ID of the event returned upon failure to decrypt an {@link EncryptedAttribute}. */
+    /** ID of the event returned upon failure to decrypt an {@link org.opensaml.saml.saml2.core.EncryptedAttribute}. */
     @Nonnull @NotEmpty public static final String DECRYPT_ATTRIBUTE_FAILED = "DecryptAttributeFailed";
     
-    /** ID of the event returned upon failure to decrypt an {@link EncryptedID}. */
+    /** ID of the event returned upon failure to decrypt an {@link org.opensaml.saml.saml2.core.EncryptedID}. */
     @Nonnull @NotEmpty public static final String DECRYPT_NAMEID_FAILED = "DecryptNameIDFailed";
 
     /** ID of the event returned upon failure to resolve an outgoing message endpoint to use. */
     @Nonnull @NotEmpty public static final String ENDPOINT_RESOLUTION_FAILED = "EndpointResolutionFailed";
 
-    /** ID of the event returned if the requested NameIDPolicy can't be satisfied. */
+    /**
+     * ID of the event returned if the requested {@link org.opensaml.saml.saml2.core.NameIDPolicy} can't be satisfied.
+     */
     @Nonnull @NotEmpty public static final String INVALID_NAMEID_POLICY = "InvalidNameIDPolicy";
     
     /** ID of the event returned if a SAML artifact cannot be resolved. */



More information about the commits mailing list