117118119120121122123124125126127128
/** * Returns the cacheHash */ public final HashKey getCacheHash() { MnodeValue value = getMnodeValue(); if (value != null) return value.getCacheHashKey(); else return null; }
250251252253254255256257258259
return getMnodeValue().getLeaseOwner(); } public void clearLease() { MnodeValue mnodeValue = getMnodeValue(); if (mnodeValue != null) mnodeValue.clearLease(); }