All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.auth0.web.Auth0ClientImpl Maven / Gradle / Ivy

The newest version!
package com.auth0.web;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

/**
 * Wrapper implementation around Auth0 service calls
 */
@Service
public class Auth0ClientImpl extends com.auth0.Auth0ClientImpl {

    @Autowired
    public Auth0ClientImpl(final Auth0Config auth0Config) {
        super(auth0Config.getClientId(), auth0Config.getClientSecret(), auth0Config.getDomain());
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy