package org.cloudfoundry.community.servicebroker.datalifecycle.config;
import org.cloudfoundry.community.servicebroker.model.BrokerApiVersion;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
class BrokerAPIVersionConfig {
@Bean
public BrokerApiVersion brokerApiVersion() {
return new BrokerApiVersion("2.4");
}
}