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

com.logicbus.redis.context.XRC Maven / Gradle / Ivy

There is a newer version: 1.6.17
Show newest version
package com.logicbus.redis.context;

import com.anysoft.context.XMLResource;


/**
 * 基于外部XML的Context实现
 * 
 * @author duanyy
 *
 * @since 1.0.0.1
 * 
 */
public class XRC extends XMLResource implements RedisContext{

	
	public String getObjectName() {
		return "rcp";
	}

	
	public String getDefaultClass() {
		return RedisPool.class.getName();
	}

	
	public String getDefaultXrc() {
		return "java:///com/logicbus/kvalue/context/kvalue.context.default.xml#com.logicbus.kvalue.context.XRC";
	}


	public RedisPool getPool(String id) {
		return get(id);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy