List of usage examples for org.apache.commons.jcs.engine.control.group GroupAttrName GroupAttrName
public GroupAttrName(GroupId groupId, T attrName)
From source file:org.tinygroup.cache.jcs.JcsCache.java
private GroupAttrName<String> getGroupAttrName(String group, String name) { GroupId gid = new GroupId(groupCacheAccess.getCacheControl().getCacheName(), group); return new GroupAttrName<String>(gid, name); }