[java-identity-provider COMMIT] /trunk/idp-session-impl/src/main/java/net/shibboleth/idp/session/impl/ProcessLogout.java

noreply at shibboleth.net noreply at shibboleth.net
Thu Aug 28 15:31:13 EDT 2014


Author: scantor
Date: Thu Aug 28 15:31:12 2014
New Revision: 6481

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=6481&view=rev
Log:
Fix docs and error message.

Modified:
    trunk/idp-session-impl/src/main/java/net/shibboleth/idp/session/impl/ProcessLogout.java

Modified: trunk/idp-session-impl/src/main/java/net/shibboleth/idp/session/impl/ProcessLogout.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-session-impl/src/main/java/net/shibboleth/idp/session/impl/ProcessLogout.java?rev=6481&r1=6480&r2=6481&view=diff
==============================================================================
--- trunk/idp-session-impl/src/main/java/net/shibboleth/idp/session/impl/ProcessLogout.java (original)
+++ trunk/idp-session-impl/src/main/java/net/shibboleth/idp/session/impl/ProcessLogout.java Thu Aug 28 15:31:12 2014
@@ -54,8 +54,10 @@
  * <p>A {@link SubjectContext} and {@link SessionContext} are also populated.</p>
  * 
  * @event {@link org.opensaml.profile.action.EventIds#PROCEED_EVENT_ID}
- * @post The matching session is destroyed.
- * @post If a session was found, then a SubjectContext and LogoutContext will be populated.
+ * @event {@link org.opensaml.profile.action.EventIds#INVALID_PROFILE_CTX}
+ * @event {@link org.opensaml.profile.action.EventIds#IO_ERROR}
+ * @post The matching {@link IdPSession} is destroyed.
+ * @post If a {@link IdPSession} was found, then a {@link SubjectContext} and {@link LogoutContext} will be populated.
  */
 public class ProcessLogout extends AbstractProfileAction {
     
@@ -231,7 +233,7 @@
             try {
                 sessionManager.destroySession(session.getId());
             } catch (final SessionException e) {
-                log.error("{} Error binding session to client address", getLogPrefix(), e);
+                log.error("{} Error destroying session", getLogPrefix(), e);
                 ActionSupport.buildEvent(profileRequestContext, EventIds.IO_ERROR);
             }
         } catch (final ResolverException e) {



More information about the commits mailing list