use of io.gravitee.am.gateway.handler.common.client.ClientSyncService in project gravitee-access-management by gravitee-io.
the class ClientAuthHandlerTest method setUp.
@Override
public void setUp() throws Exception {
super.setUp();
router.post("/oauth/token").handler(ClientAuthHandler.create(clientSyncService, clientAssertionService, jwkService, domain, null)).handler(rc -> rc.response().setStatusCode(200).end()).failureHandler(new ExceptionHandler());
}
Aggregations