public void unlock(Collection<? extends K> keys) {
if (true) throw new UnsupportedOperationException("Not yet implemented");
if (keys == null || keys.isEmpty())
throw new IllegalArgumentException("Cannot unlock empty list of keys");
LockControlCommand command = commandsFactory.buildLockControlCommand(keys, false);
invoker.invoke(getInvocationContext(), command);
}