Example usage for org.springframework.boot.actuate.autoconfigure.cloudfoundry.servlet TokenValidator TokenValidator

List of usage examples for org.springframework.boot.actuate.autoconfigure.cloudfoundry.servlet TokenValidator TokenValidator

Introduction

In this page you can find the example usage for org.springframework.boot.actuate.autoconfigure.cloudfoundry.servlet TokenValidator TokenValidator.

Prototype

TokenValidator(CloudFoundrySecurityService cloudFoundrySecurityService) 

Source Link

Usage

From source file:org.springframework.boot.actuate.autoconfigure.cloudfoundry.servlet.TokenValidatorTests.java

@Before
public void setup() {
    MockitoAnnotations.initMocks(this);
    this.tokenValidator = new TokenValidator(this.securityService);
}