Example usage for org.apache.commons.jcs.engine.control.group GroupId GroupId

List of usage examples for org.apache.commons.jcs.engine.control.group GroupId GroupId

Introduction

In this page you can find the example usage for org.apache.commons.jcs.engine.control.group GroupId GroupId.

Prototype

public GroupId(String cacheName, String groupName) 

Source Link

Document

Constructor for the GroupId object

Usage

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);
}