org.brijframework.resources.group.EnvResourceGroup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of github-brijframework-resources Show documentation
Show all versions of github-brijframework-resources Show documentation
This is the resources library of brijframework
The newest version!
package org.brijframework.resources.group;
import java.util.concurrent.ConcurrentHashMap;
import org.brijframework.env.Environment;
import org.brijframework.group.impl.DefaultGroup;
public class EnvResourceGroup implements DefaultGroup{
/**
*
*/
private static final long serialVersionUID = 1L;
private ConcurrentHashMap cache=new ConcurrentHashMap();
private Object groupKey;
public EnvResourceGroup(Object groupKey) {
this.groupKey=groupKey;
}
@Override
public Object getGroupKey() {
return groupKey;
}
@Override
public ConcurrentHashMap getCache() {
return cache;
}
@Override
public T find(String parentID, Class> type) {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy