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

travel.wink.sdk.channel.manager.ChannelManagerSDKConfiguration Maven / Gradle / Ivy

Go to download

Java SDK for the channel manager integrators wanting to communicate with the Wink Travel Platform.

There is a newer version: 30.5.13
Show newest version
package travel.wink.sdk.channel.manager;

import lombok.RequiredArgsConstructor;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.reactive.function.client.WebClient;
import travel.wink.sdk.channel.manager.api.ChannelManagerApi;
import travel.wink.sdk.channel.manager.invoker.ApiClient;

@RequiredArgsConstructor
@Configuration
public class ChannelManagerSDKConfiguration {
	private final WebClient webClient;

	@Bean
	public ApiClient apiClient() {
		return new ApiClient(this.webClient);
	}

	@Bean
	public ChannelManagerApi channelManagerApi() {
		return new ChannelManagerApi(apiClient());
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy