Package net.rubyeye.xmemcached.aws
Class ClusterConfiguration
- java.lang.Object
-
- net.rubyeye.xmemcached.aws.ClusterConfiguration
-
- All Implemented Interfaces:
java.io.Serializable
public class ClusterConfiguration extends java.lang.Object implements java.io.Serializable
Cluster configuration retrieved from ElasticCache.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.List<CacheNode>
nodeList
private static long
serialVersionUID
private int
version
-
Constructor Summary
Constructors Constructor Description ClusterConfiguration()
ClusterConfiguration(int version, java.util.List<CacheNode> nodeList)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<CacheNode>
getNodeList()
int
getVersion()
void
setNodeList(java.util.List<CacheNode> nodeList)
void
setVersion(int version)
java.lang.String
toString()
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
version
private int version
-
nodeList
private java.util.List<CacheNode> nodeList
-
-
Constructor Detail
-
ClusterConfiguration
public ClusterConfiguration(int version, java.util.List<CacheNode> nodeList)
-
ClusterConfiguration
public ClusterConfiguration()
-
-
Method Detail
-
getVersion
public int getVersion()
-
setVersion
public void setVersion(int version)
-
getNodeList
public java.util.List<CacheNode> getNodeList()
-
setNodeList
public void setNodeList(java.util.List<CacheNode> nodeList)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-