Example usage for org.springframework.security.oauth.provider ConsumerDetailsService interface-usage

List of usage examples for org.springframework.security.oauth.provider ConsumerDetailsService interface-usage

Introduction

In this page you can find the example usage for org.springframework.security.oauth.provider ConsumerDetailsService interface-usage.

Usage

From source file nl.surfnet.coin.api.service.OpenConextClientDetailsService.java

public interface OpenConextClientDetailsService extends ClientDetailsService, ConsumerDetailsService {

    ARP getArp(String spEntityId);
}

From source file ltistarter.oauth.MyConsumerDetailsService.java

/**
 * Sample consumer details service which verifies the key and secret,
 * In our case the key is "key" and secret is "secret"
 */
@Component
public class MyConsumerDetailsService implements ConsumerDetailsService {

From source file ltistarter.lti.LTIConsumerDetailsService.java

/**
 * Sample consumer details service which verifies the key and secret using the LTI key DB.
 * Populates the ConsumerDetails.consumerName with the ID of the LtiKeyEntity if a match is found
 * and grants the OAUTH and LTI Authority Roles
 */
@Component

From source file org.eurekastreams.server.service.security.oauth.ConsumerDetailsServiceImpl.java

/**
 * Interface between Spring Security OAuth and Eureka Streams for providing consumer data.
 */
public class ConsumerDetailsServiceImpl implements ConsumerDetailsService {
    /** Local instance of logger. */
    private final Log log = LogFactory.make();

From source file org.jasig.ssp.service.security.lti.impl.LtiConsumerServiceImpl.java

@Service("ltiConsumerService")
@Transactional
public class LtiConsumerServiceImpl extends AbstractAuditableCrudService<LtiConsumer>
        implements LtiConsumerService, ConsumerDetailsService {

    private static final String DEFAULT_TARGET = "default";