blob: 73b69a22821f4ec995f8c65ba3f8cac9517af55c [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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
*
* http://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.apache.shardingsphere.elasticjob.cloud.reg.zookeeper;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
import lombok.Setter;
/**
* Zookeeper configuration.
*/
@Getter
@Setter
@RequiredArgsConstructor
public final class ZookeeperConfiguration {
/**
* Server list of ZooKeeper.
*
* <p>
* Include IP addresses and ports,
* Multiple IP address split by comma.
* For example: host1:2181,host2:2181
* </p>
*/
private final String serverLists;
/**
* Namespace.
*/
private final String namespace;
/**
* Base sleep time milliseconds.
*/
private int baseSleepTimeMilliseconds = 1000;
/**
* Max sleep time milliseconds.
*/
private int maxSleepTimeMilliseconds = 3000;
/**
* Max retry times.
*/
private int maxRetries = 3;
/**
* Session timeout milliseconds.
*/
private int sessionTimeoutMilliseconds;
/**
* Connection timeout milliseconds.
*/
private int connectionTimeoutMilliseconds;
/**
* Zookeeper digest.
*/
private String digest;
}