I am implementing caching using hashmap in a singleton class.
Below mentioned is a code snippet.
public class CacheHelperNew {
private static HashMap cMap;
private static CacheHelperNew instance = null;
static Logger mLogger = Logger.getLogger(CacheHelperNew.class);
private CacheHelperNew(BDDObject savingObject)
{
List<String> inActiveStudyPhaseTypes = inActiveStudyPhaseTypes(savingObject);
HashMap<String, List<String>> inActiveLOVMap = new HashMap<String, List<String>>();
inActiveLOVMap.put(
ClinicalStudyConstants.FIELD_STUDY_STRUCT_STUDY_PHASE,
inActiveStudyPhaseTypes);
}
}
--> The inActiveStudyPhaseTypes is accessed from the DB in runtime through the savingobject which is passed in runtime. This can also be modified by the user from UI screen. The code snippet for that is mentioned below.
{
ArrayList<String> pChangedColumns = new ArrayList<String>();
pChangedColumns.addAll(savingObject.getChangedColumns());
Iterator<String> iter = pChangedColumns.iterator();
if (iter.hasNext()) {
String strr = (String) iter.next();
mLogger.info("In pChangedColumns list" + strr);
if (IDDConstants.IDD_STUDY_REF_TYPE_NAME.equalsIgnoreCase(strr)) {
if (inactiveStudyRefTypes.contains(studyRefTypes)) {
return new OperationResult(new OperationExecutionError(
"SIP-37006", new String[] { msg },
getLocalizationGate()));
}
}
}
}
The thing is that in case, it's modified by the user, I have to update the cache. As per my info, to implement it, I have to write a method in the CacheHelperNew class for that and I have to pass a reference from the UI code to that class.
Is my info correct? If so, then how to write that method and how to update data in cache from UI code?
I have added a method to the cache class lately
public void addCache(String key, List<String> value)
{
HashMap<String, List<String>> newMap = new HashMap<String, List<String>>(inActiveLOVMap);
newMap.put(key, value);
inActiveLOVMap = newMap;
}