com.holmos.cache.config.parser.PropertiesParser Maven / Gradle / Ivy
The newest version!
package com.holmos.cache.config.parser;
import java.util.ArrayList;
import com.holmos.cache.config.CacheConfig;
import com.holmos.cache.config.CacheConfigComponent;
/**
* Watsen 平台缓存系统Properties格式配置文件解析器
*
* @author 吴银龙([email protected])
*
* */
public class PropertiesParser extends AbstractParser{
protected ArrayList cacheNames=new ArrayList();
public PropertiesParser(){
super();
}
@Override
public CacheConfigComponent parser(String cacheName) {
return null;
}
@Override
public CacheConfig parser() {
return null;
}
}