Package org.apache.zookeeper.server
Class ZooKeeperServerConf
- java.lang.Object
-
- org.apache.zookeeper.server.ZooKeeperServerConf
-
public class ZooKeeperServerConf extends java.lang.ObjectConfiguration data for aZooKeeperServer. This class is immutable.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringKEY_CLIENT_PORTThe key in the map returned bytoMap()for the client port.static java.lang.StringKEY_CLIENT_PORT_LISTEN_BACKLOGThe key in the map returned bytoMap()for the server socket listen backlog.static java.lang.StringKEY_DATA_DIRThe key in the map returned bytoMap()for the data directory.static java.lang.StringKEY_DATA_LOG_DIRThe key in the map returned bytoMap()for the data log directory.static java.lang.StringKEY_MAX_CLIENT_CNXNSThe key in the map returned bytoMap()for the maximum client connections per host.static java.lang.StringKEY_MAX_SESSION_TIMEOUTThe key in the map returned bytoMap()for the maximum session timeout.static java.lang.StringKEY_MIN_SESSION_TIMEOUTThe key in the map returned bytoMap()for the minimum session timeout.static java.lang.StringKEY_SERVER_IDThe key in the map returned bytoMap()for the server ID.static java.lang.StringKEY_TICK_TIMEThe key in the map returned bytoMap()for the tick time.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetClientPort()Gets the client port.intgetClientPortListenBacklog()Returns the server socket listen backlog length.java.lang.StringgetDataDir()Gets the data directory.java.lang.StringgetDataLogDir()Gets the data log directory.intgetMaxClientCnxnsPerHost()Gets the maximum client connections per host.intgetMaxSessionTimeout()Gets the maximum session timeout.intgetMinSessionTimeout()Gets the minimum session timeout.longgetServerId()Gets the server ID.intgetTickTime()Gets the tick time.java.util.Map<java.lang.String,java.lang.Object>toMap()Converts this configuration to a map.
-
-
-
Field Detail
-
KEY_CLIENT_PORT
public static final java.lang.String KEY_CLIENT_PORT
The key in the map returned bytoMap()for the client port.- See Also:
- Constant Field Values
-
KEY_DATA_DIR
public static final java.lang.String KEY_DATA_DIR
The key in the map returned bytoMap()for the data directory.- See Also:
- Constant Field Values
-
KEY_DATA_LOG_DIR
public static final java.lang.String KEY_DATA_LOG_DIR
The key in the map returned bytoMap()for the data log directory.- See Also:
- Constant Field Values
-
KEY_TICK_TIME
public static final java.lang.String KEY_TICK_TIME
The key in the map returned bytoMap()for the tick time.- See Also:
- Constant Field Values
-
KEY_MAX_CLIENT_CNXNS
public static final java.lang.String KEY_MAX_CLIENT_CNXNS
The key in the map returned bytoMap()for the maximum client connections per host.- See Also:
- Constant Field Values
-
KEY_MIN_SESSION_TIMEOUT
public static final java.lang.String KEY_MIN_SESSION_TIMEOUT
The key in the map returned bytoMap()for the minimum session timeout.- See Also:
- Constant Field Values
-
KEY_MAX_SESSION_TIMEOUT
public static final java.lang.String KEY_MAX_SESSION_TIMEOUT
The key in the map returned bytoMap()for the maximum session timeout.- See Also:
- Constant Field Values
-
KEY_SERVER_ID
public static final java.lang.String KEY_SERVER_ID
The key in the map returned bytoMap()for the server ID.- See Also:
- Constant Field Values
-
KEY_CLIENT_PORT_LISTEN_BACKLOG
public static final java.lang.String KEY_CLIENT_PORT_LISTEN_BACKLOG
The key in the map returned bytoMap()for the server socket listen backlog.- See Also:
- Constant Field Values
-
-
Method Detail
-
getClientPort
public int getClientPort()
Gets the client port.- Returns:
- client port
-
getDataDir
public java.lang.String getDataDir()
Gets the data directory.- Returns:
- data directory
-
getDataLogDir
public java.lang.String getDataLogDir()
Gets the data log directory.- Returns:
- data log directory
-
getTickTime
public int getTickTime()
Gets the tick time.- Returns:
- tick time
-
getMaxClientCnxnsPerHost
public int getMaxClientCnxnsPerHost()
Gets the maximum client connections per host.- Returns:
- maximum client connections per host
-
getMinSessionTimeout
public int getMinSessionTimeout()
Gets the minimum session timeout.- Returns:
- minimum session timeout
-
getMaxSessionTimeout
public int getMaxSessionTimeout()
Gets the maximum session timeout.- Returns:
- maximum session timeout
-
getServerId
public long getServerId()
Gets the server ID.- Returns:
- server ID
-
getClientPortListenBacklog
public int getClientPortListenBacklog()
Returns the server socket listen backlog length.
-
toMap
public java.util.Map<java.lang.String,java.lang.Object> toMap()
Converts this configuration to a map. The returned map is mutable, and changes to it do not reflect back into this configuration.- Returns:
- map representation of configuration
-
-