Polish
This commit is contained in:
parent
367963f29f
commit
601f7c0a69
|
|
@ -17,11 +17,11 @@
|
||||||
package org.springframework.boot.autoconfigure.cassandra;
|
package org.springframework.boot.autoconfigure.cassandra;
|
||||||
|
|
||||||
import com.datastax.driver.core.Cluster;
|
import com.datastax.driver.core.Cluster;
|
||||||
|
import com.datastax.driver.core.Cluster.Builder;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Callback interface that can be implemented by beans wishing to customize the
|
* Callback interface that can be implemented by beans wishing to customize the
|
||||||
* {@link com.datastax.driver.core.Cluster} via
|
* {@link Cluster} via a {@link Builder Cluster.Builder} whilst retaining default
|
||||||
* {@link com.datastax.driver.core.Cluster.Builder} retaining its default
|
|
||||||
* auto-configuration.
|
* auto-configuration.
|
||||||
*
|
*
|
||||||
* @author Eddú Meléndez
|
* @author Eddú Meléndez
|
||||||
|
|
@ -30,9 +30,9 @@ import com.datastax.driver.core.Cluster;
|
||||||
public interface ClusterBuilderCustomizer {
|
public interface ClusterBuilderCustomizer {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Customize the {@link com.datastax.driver.core.Cluster.Builder}.
|
* Customize the {@link Builder}.
|
||||||
* @param clusterBuilder the builder to customize
|
* @param clusterBuilder the builder to customize
|
||||||
*/
|
*/
|
||||||
void customize(Cluster.Builder clusterBuilder);
|
void customize(Builder clusterBuilder);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -17,12 +17,12 @@
|
||||||
package org.springframework.boot.autoconfigure.elasticsearch.jest;
|
package org.springframework.boot.autoconfigure.elasticsearch.jest;
|
||||||
|
|
||||||
import io.searchbox.client.config.HttpClientConfig;
|
import io.searchbox.client.config.HttpClientConfig;
|
||||||
|
import io.searchbox.client.config.HttpClientConfig.Builder;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Callback interface that can be implemented by beans wishing to further customize the
|
* Callback interface that can be implemented by beans wishing to further customize the
|
||||||
* {@link io.searchbox.client.config.HttpClientConfig} via
|
* {@link HttpClientConfig} via a {@link Builder HttpClientConfig.Builder} whilst
|
||||||
* {@link io.searchbox.client.config.HttpClientConfig.Builder} retaining its default
|
* retaining default auto-configuration.
|
||||||
* auto-configuration.
|
|
||||||
*
|
*
|
||||||
* @author Stephane Nicoll
|
* @author Stephane Nicoll
|
||||||
* @since 1.5.0
|
* @since 1.5.0
|
||||||
|
|
@ -30,9 +30,9 @@ import io.searchbox.client.config.HttpClientConfig;
|
||||||
public interface HttpClientConfigBuilderCustomizer {
|
public interface HttpClientConfigBuilderCustomizer {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Customize the {@link io.searchbox.client.config.HttpClientConfig.Builder}.
|
* Customize the {@link Builder}.
|
||||||
* @param builder the builder to customize
|
* @param builder the builder to customize
|
||||||
*/
|
*/
|
||||||
void customize(HttpClientConfig.Builder builder);
|
void customize(Builder builder);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue