org.apache.jackrabbit.spi2dav.LockInfoImpl Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. The ASF licenses this file to You
* under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.jackrabbit.spi2dav;
import java.util.Set;
import org.apache.jackrabbit.spi.LockInfo;
import org.apache.jackrabbit.spi.NodeId;
import org.apache.jackrabbit.webdav.DavConstants;
import org.apache.jackrabbit.webdav.lock.ActiveLock;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* LockInfoImpl
...
*/
public class LockInfoImpl implements LockInfo {
private static Logger log = LoggerFactory.getLogger(LockInfoImpl.class);
private final ActiveLock activeLock;
private final NodeId nodeId;
private final Set sessionLockTokens;
public LockInfoImpl(ActiveLock activeLock, NodeId nodeId, Set sessionLockTokens) {
this.activeLock = activeLock;
this.nodeId = nodeId;
this.sessionLockTokens = sessionLockTokens;
}
ActiveLock getActiveLock() {
return activeLock;
}
//-----------------------------------------------------------< LockInfo >---
public String getLockToken() {
return (isSessionScoped()) ? null : activeLock.getToken();
}
public String getOwner() {
return activeLock.getOwner();
}
public boolean isDeep() {
return activeLock.isDeep();
}
public boolean isSessionScoped() {
return ItemResourceConstants.EXCLUSIVE_SESSION.equals(activeLock.getScope());
}
public long getSecondsRemaining() {
long timeout = activeLock.getTimeout();
return (timeout == DavConstants.INFINITE_TIMEOUT) ? Long.MAX_VALUE : timeout / 1000;
}
public boolean isLockOwner() {
String lt = activeLock.getToken();
if (lt == null) {
return false;
} else {
return sessionLockTokens.contains(lt);
}
}
public NodeId getNodeId() {
return nodeId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy