View Javadoc

1   /*
2    *  DISCLAIMER
3    */
4   package org.flowfuse.base.services.authentication.implementation;
5   
6   import net.sf.acegisecurity.Authentication;
7   import net.sf.acegisecurity.AuthenticationException;
8   import org.apache.commons.logging.Log;
9   import org.apache.commons.logging.LogFactory;
10  import org.flowfuse.base.dao.UserDao;
11  import org.flowfuse.base.services.authentication.AuthenticationService;
12  
13  /***
14   * @author <a href="stefan@flowfuse.org">Stefan Kleineikenscheidt</a>,
15   *         Flowfuse.org
16   * @version $Id: AuthenticationServiceImpl.java,v 1.1 2005/11/20 15:02:18 skleinei Exp $
17   */
18  public class AuthenticationServiceImpl implements AuthenticationService {
19  
20    /***
21     * RCS ID
22     */
23    public final static String rcsid = "$Id: AuthenticationServiceImpl.java,v 1.1 2005/11/20 15:02:18 skleinei Exp $";
24  
25    /***
26     * Logger
27     */
28    protected final Log logger = LogFactory.getLog(this.getClass());
29  
30    UserDao userDao = null;
31  
32    public Authentication authenticate(Authentication authentication)
33            throws AuthenticationException {
34      return null;
35    }
36  
37    public boolean supports(Class aClass) {
38      return false;
39    }
40  
41    public UserDao getUserDao() {
42      return userDao;
43    }
44  
45    public void setUserDao(UserDao userDao) {
46      this.userDao = userDao;
47    }
48  
49  }
50  
51  /* EOF */