1 27 package org.objectweb.transaction.api.lock; 28 29 import org.objectweb.transaction.api.Feature; 30 31 38 public interface ConflictLockCheckFeature 39 extends Feature 40 { 41 44 public static final String CONFLICT_LOCK_CHECK_FEATURE = "conflict-lock-check-feature"; 45 46 52 public boolean isConflict(LockMode acquired, LockMode requested); 53 } 54 | Popular Tags |