use of org.cloudfoundry.reactor.tokenprovider.PasswordGrantTokenProvider in project promregator by promregator.
the class ReactiveCFAccessorImpl method constructCloudFoundryClient.
@PostConstruct
private void constructCloudFoundryClient() throws ConfigurationException {
ProxyConfiguration proxyConfiguration = this.proxyConfiguration();
DefaultConnectionContext connectionContext = this.connectionContext(proxyConfiguration);
PasswordGrantTokenProvider tokenProvider = this.tokenProvider();
this.cloudFoundryClient = this.cloudFoundryClient(connectionContext, tokenProvider);
}
Aggregations