List of usage examples for org.springframework.security.authentication.dao AbstractUserDetailsAuthenticationProvider subclass-usage
From source file io.gravitee.management.idp.repository.authentication.RepositoryAuthenticationProvider.java
/** * @author David BRASSELY (david at gravitee.io) * @author GraviteeSource Team */ @Import(RepositoryAuthenticationProviderConfiguration.class) public class RepositoryAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider
From source file org.ngrinder.security.NGrinderAuthenticationProvider.java
import org.springframework.transaction.annotation.Transactional; import org.springframework.util.Assert; /** * nGrinder authentication provide. This class is for the plugin system of user authentication. *
From source file org.fao.geonet.kernel.security.ecas.ECasUserDetailAuthenticationProvider.java
public class ECasUserDetailAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider implements ApplicationContextAware, UserDetailsService { private static final org.apache.commons.logging.Log logger = LogFactory .getLog(ECasUserDetailAuthenticationProvider.class); private static final String CAS_STATEFUL = "_cas_stateful_";
From source file com.telefonica.euro_iaas.sdc.puppetwrapper.auth.OpenStackAuthenticationProvider.java
/** * The Class OpenStackAuthenticationProvider. */ public class OpenStackAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider { /**
From source file fr.univrouen.poste.provider.DatabaseAuthenticationProvider.java
@Service("databaseAuthenticationProvider") public class DatabaseAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider { private final Logger logger = Logger.getLogger(getClass()); @Resource
From source file com.telefonica.euro_iaas.sdc.rest.auth.OpenStackAuthenticationProvider.java
* The Constant SYSTEM_FIWARE. */ public static final String SYSTEM_FIWARE = "FIWARE"; /** * The Constant SYSTEM_FASTTRACK. */
From source file com.telefonica.euro_iaas.paasmanager.rest.auth.OpenStackAuthenticationProvider.java
/** * The Class OpenStackAuthenticationProvider. * * @author fernandolopezaguilar */ public class OpenStackAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider {
From source file org.linagora.linshare.auth.dao.LdapAuthenticationProvider.java
public class LdapAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider { private final static Log logger = LogFactory.getLog(LdapAuthenticationProvider.class); private LdapUserDetailsProvider ldapUserDetailsProvider;
From source file org.libreplan.web.users.services.LDAPCustomAuthenticationProvider.java
/**
* An extending from AbstractUserDetailsAuthenticationProvider class which is
* used to implement the authentication against LDAP.
*
* This provider implements the process explained in
* <https://wiki.libreplan.org/twiki/bin/view/LibrePlan/AnA04S06LdapAuthentication>
From source file org.taverna.server.master.identity.WorkflowInternalAuthProvider.java
/**
* A special authentication provider that allows a workflow to authenticate to
* itself. This is used to allow the workflow to publish to its own interaction
* feed.
*
* @author Donal Fellows