View Javadoc
1   /**
2    * Waffle (https://github.com/dblock/waffle)
3    *
4    * Copyright (c) 2010 - 2015 Application Security, Inc.
5    *
6    * All rights reserved. This program and the accompanying materials
7    * are made available under the terms of the Eclipse Public License v1.0
8    * which accompanies this distribution, and is available at
9    * http://www.eclipse.org/legal/epl-v10.html
10   *
11   * Contributors:
12   *     Application Security, Inc.
13   */
14  package waffle.shiro.negotiate;
15  
16  /**
17   * Derived from net.skorgenes.security.jsecurity.negotiate.NegotiateAuthenticationFilter.
18   *
19   * @author Dan Rollo
20   */
21  import org.apache.shiro.authc.AuthenticationException;
22  
23  /**
24   * Thrown when the negotiate authentication is being established and requires an extra roundtrip to the client.
25   * 
26   * @author Dan Rollo
27   * @since 1.0.0
28   */
29  public class AuthenticationInProgressException extends AuthenticationException {
30      
31      /** The Constant serialVersionUID. */
32      private static final long serialVersionUID = 2684886728102100988L;
33  }