[java-opensaml COMMIT] /trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/common/profile/SAMLEventIds.java
noreply at shibboleth.net
noreply at shibboleth.net
Tue Apr 15 11:21:59 EDT 2014
Author: scantor
Date: Tue Apr 15 11:21:59 2014
New Revision: 3793
URL: http://svn.shibboleth.net/view/java-opensaml?rev=3793&view=rev
Log:
Add NoPassive event.
Modified:
trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/common/profile/SAMLEventIds.java
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=3793&r1=3792&r2=3793&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 Apr 15 11:21:59 2014
@@ -27,20 +27,23 @@
*/
public final class SAMLEventIds {
- /** ID of the event returned if the requested NameIDPolicy can't be satisfied. */
- @Nonnull @NotEmpty public static final String INVALID_NAMEID_POLICY = "InvalidNameIDPolicy";
-
/** ID of the event returned upon failure to decrypt an {@link EncryptedAssertion}. */
@Nonnull @NotEmpty public static final String DECRYPT_ASSERTION_FAILED = "DecryptAssertionFailed";
+ /** ID of the event returned upon failure to decrypt an {@link EncryptedAttribute}. */
+ @Nonnull @NotEmpty public static final String DECRYPT_ATTRIBUTE_FAILED = "DecryptAttributeFailed";
+
/** ID of the event returned upon failure to decrypt an {@link EncryptedID}. */
@Nonnull @NotEmpty public static final String DECRYPT_NAMEID_FAILED = "DecryptNameIDFailed";
- /** ID of the event returned upon failure to decrypt an {@link EncryptedAttribute}. */
- @Nonnull @NotEmpty public static final String DECRYPT_ATTRIBUTE_FAILED = "DecryptAttributeFailed";
-
/** 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. */
+ @Nonnull @NotEmpty public static final String INVALID_NAMEID_POLICY = "InvalidNameIDPolicy";
+
+ /** ID of the event returned if passive authentication isn't possible. */
+ @Nonnull @NotEmpty public static final String NO_PASSIVE = "NoPassive";
/** Constructor. */
private SAMLEventIds() {
More information about the commits
mailing list