All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.tinygroup.jedis.config.ShardJedisSentinelConfig Maven / Gradle / Ivy

There is a newer version: 2.2.3
Show newest version
package org.tinygroup.jedis.config;

import java.util.List;

import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamImplicit;

@XStreamAlias("shard-jedis-sentinel-config")
public class ShardJedisSentinelConfig {
	
	@XStreamImplicit
	private List shardSentinelConfigs;

	public List getShardSentinelConfigs() {
		if(shardSentinelConfigs==null){
			throw new RuntimeException("未配置任何redis信息");
		}
		return shardSentinelConfigs;
	}

	public void setShardSentinelConfigs(
			List shardSentinelConfigs) {
		this.shardSentinelConfigs = shardSentinelConfigs;
	}

	

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy