
org.frameworkset.web.auth.BaseAuthenticatePlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bboss-ticket Show documentation
Show all versions of bboss-ticket Show documentation
support session share between application cluster nodes and cross domain application nodes.support good application session monitor and session data statitic module.demo site http://session.bbossgroups.com/
The newest version!
/**
*
*/
package org.frameworkset.web.auth;
/**
* @author yinbp
*
* @Date:2016-11-17 11:50:31
*/
public abstract class BaseAuthenticatePlugin implements AuthenticatePlugin {
/**
*
*/
public BaseAuthenticatePlugin() {
// TODO Auto-generated constructor stub
}
/** (non-Javadoc)
* @see org.frameworkset.web.auth.AuthenticatePlugin#login(org.frameworkset.web.auth.AuthenticateToken)
*/
@Override
public abstract AuthenticatedToken login(AuthenticateToken authenticateToken) throws AuthenticateException ;
/** (non-Javadoc)
* @see org.frameworkset.web.auth.AuthenticatePlugin#login(java.lang.String)
*/
@Override
public AuthenticateResponse login(String authenticateToken)
{
return null;
}
}