1
2
3
4 package org.flowfuse.base.services.authentication;
5
6 import net.sf.acegisecurity.providers.AuthenticationProvider;
7
8 /***
9 * @author <a href="stefan@flowfuse.org">Stefan Kleineikenscheidt</a>,
10 * Flowfuse.org
11 * @version $Id: AuthenticationService.java,v 1.1 2005/11/20 15:02:17 skleinei Exp $
12 */
13 public interface AuthenticationService extends AuthenticationProvider {
14
15
16 public final static String rcsid = "$Id: AuthenticationService.java,v 1.1 2005/11/20 15:02:17 skleinei Exp $";
17
18 }
19
20