1   /*
2    * Apache License
3    * Version 2.0, January 2004
4    * http://www.apache.org/licenses/
5    *
6    * Copyright 2008 by chenillekit.org
7    *
8    * Licensed under the Apache License, Version 2.0 (the "License");
9    * you may not use this file except in compliance with the License.
10   * You may obtain a copy of the License at
11   *
12   * http://www.apache.org/licenses/LICENSE-2.0
13   */
14  
15  package org.chenillekit.access.services.impl;
16  
17  import org.chenillekit.access.WebSessionUser;
18  import org.chenillekit.access.services.AppServerLoginService;
19  
20  /**
21   * Place holder implementation, it simply does nothing.
22   *
23   * @version $Id$
24   */
25  public class NoOpAppServerLoginService implements AppServerLoginService
26  {
27  	/* (non-Javadoc)
28  	 * @see org.chenillekit.access.services.AppServerLoginService#appServerLogin(org.chenillekit.access.WebSessionUser)
29  	 */
30  	public void appServerLogin(WebSessionUser user)
31  	{
32  		// To nothing...
33  	}
34  
35  }