com.auth0.web.Auth0ClientImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of auth0-spring-mvc Show documentation
Show all versions of auth0-spring-mvc Show documentation
Permits easy integration between Auth0 and a Spring app
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());
}
}