spring-data-elasticsearch Remote 源码
spring-data-elasticsearch Remote 代码
文件路径:/src/main/java/org/springframework/data/elasticsearch/core/reindex/Remote.java
/*
* Copyright 2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.data.elasticsearch.core.reindex;
import java.time.Duration;
import org.springframework.lang.Nullable;
import org.springframework.util.Assert;
/**
* Remote info (@see https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-reindex.html#source)
*
* @author Sijia Liu
* @since 4.4
*/
public class Remote {
private final String scheme;
private final String host;
private final int port;
@Nullable private final String pathPrefix;
@Nullable private final String username;
@Nullable private final String password;
@Nullable private final Duration socketTimeout;
@Nullable private final Duration connectTimeout;
private Remote(String scheme, String host, int port, @Nullable String pathPrefix, @Nullable String username,
@Nullable String password, @Nullable Duration socketTimeout, @Nullable Duration connectTimeout) {
Assert.notNull(scheme, "scheme must not be null");
Assert.notNull(host, "host must not be null");
this.scheme = scheme;
this.host = host;
this.port = port;
this.pathPrefix = pathPrefix;
this.username = username;
this.password = password;
this.socketTimeout = socketTimeout;
this.connectTimeout = connectTimeout;
}
public String getHost() {
return host;
}
@Nullable
public String getUsername() {
return username;
}
@Nullable
public String getPassword() {
return password;
}
@Nullable
public Duration getSocketTimeout() {
return socketTimeout;
}
@Nullable
public Duration getConnectTimeout() {
return connectTimeout;
}
public String getScheme() {
return scheme;
}
public int getPort() {
return port;
}
@Nullable
public String getPathPrefix() {
return pathPrefix;
}
public static RemoteBuilder builder(String scheme, String host, int port) {
return new RemoteBuilder(scheme, host, port);
}
public static class RemoteBuilder {
private final String scheme;
private final String host;
private final int port;
@Nullable private String pathPrefix;
@Nullable private String username;
@Nullable private String password;
@Nullable private Duration socketTimeout;
@Nullable private Duration connectTimeout;
public RemoteBuilder(String scheme, String host, int port) {
this.scheme = scheme;
this.host = host;
this.port = port;
}
public RemoteBuilder withPathPrefix(String pathPrefix) {
this.pathPrefix = pathPrefix;
return this;
}
public RemoteBuilder withUsername(String username) {
this.username = username;
return this;
}
public RemoteBuilder withPassword(String password) {
this.password = password;
return this;
}
public RemoteBuilder withSocketTimeout(Duration socketTimeout) {
this.socketTimeout = socketTimeout;
return this;
}
public RemoteBuilder withConnectTimeout(Duration connectTimeout) {
this.connectTimeout = connectTimeout;
return this;
}
public Remote build() {
return new Remote(scheme, host, port, pathPrefix, username, password, socketTimeout, connectTimeout);
}
}
}
相关信息
spring-data-elasticsearch 源码目录
相关文章
spring-data-elasticsearch ReindexRequest 源码
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦