/**
* Set the transaction isolation level. This determines the locking strategy to be used
*/
public void setIsolationLevel(String level)
{
IsolationLevel tmp_level = IsolationLevel.stringToIsolationLevel(level);
if (tmp_level == null)
{
throw new IllegalArgumentException("TreeCache.setIsolationLevel(): level \"" + level + "\" is invalid");
}