package com.whyc.properties;
|
|
|
public class RedisPoolProperties {
|
|
private Integer size;
|
private Integer maxIdle;
|
private Integer minIdle;
|
private Integer maxActive;
|
private Integer maxWait;
|
private Integer connTimeout;
|
private Integer soTimeout;
|
|
public Integer getSize() {
|
return size;
|
}
|
|
public void setSize(Integer size) {
|
this.size = size;
|
}
|
|
public Integer getMaxIdle() {
|
return maxIdle;
|
}
|
|
public void setMaxIdle(Integer maxIdle) {
|
this.maxIdle = maxIdle;
|
}
|
|
public Integer getMinIdle() {
|
return minIdle;
|
}
|
|
public void setMinIdle(Integer minIdle) {
|
this.minIdle = minIdle;
|
}
|
|
public Integer getMaxActive() {
|
return maxActive;
|
}
|
|
public void setMaxActive(Integer maxActive) {
|
this.maxActive = maxActive;
|
}
|
|
public Integer getMaxWait() {
|
return maxWait;
|
}
|
|
public void setMaxWait(Integer maxWait) {
|
this.maxWait = maxWait;
|
}
|
|
public Integer getConnTimeout() {
|
return connTimeout;
|
}
|
|
public void setConnTimeout(Integer connTimeout) {
|
this.connTimeout = connTimeout;
|
}
|
|
public Integer getSoTimeout() {
|
return soTimeout;
|
}
|
|
public void setSoTimeout(Integer soTimeout) {
|
this.soTimeout = soTimeout;
|
}
|
}
|