📄 abstractlockinfo.java
字号:
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * 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.core.lock;import org.apache.jackrabbit.core.SessionImpl;import org.apache.jackrabbit.core.NodeId;import javax.jcr.Session;/** * Common information about a lock. */public abstract class AbstractLockInfo { /** * Lock token */ protected final LockToken lockToken; /** * Flag indicating whether lock is session scoped */ protected final boolean sessionScoped; /** * Flag indicating whether lock is deep */ protected final boolean deep; /** * Lock owner, determined on creation time */ protected final String lockOwner; /** * Session currently holding lock */ protected SessionImpl lockHolder; /** * Flag indicating whether this lock is live */ protected boolean live; /** * Create a new instance of this class. * * @param lockToken lock token * @param sessionScoped whether lock token is session scoped * @param deep whether lock is deep * @param lockOwner owner of lock */ public AbstractLockInfo(LockToken lockToken, boolean sessionScoped, boolean deep, String lockOwner) { this.lockToken = lockToken; this.sessionScoped = sessionScoped; this.deep = deep; this.lockOwner = lockOwner; } /** * Set the live flag * @param live live flag */ public void setLive(boolean live) { this.live = live; } /** * Return the ID of the lock holding node * @return the id */ public NodeId getId() { return lockToken.id; } /** * Return the session currently holding the lock * * @return session currently holding the lock */ public SessionImpl getLockHolder() { return lockHolder; } /** * Set the session currently holding the lock * * @param lockHolder session currently holding the lock */ public void setLockHolder(SessionImpl lockHolder) { this.lockHolder = lockHolder; } /** * Return the lock token as seen by the session passed as parameter. If * this session is currently holding the lock, it will get the lock token * itself, otherwise a <code>null</code> string */ public String getLockToken(Session session) { if (session.equals(lockHolder)) { return lockToken.toString(); } return null; } /** * Return a flag indicating whether the lock is live * * @return <code>true</code> if the lock is live; otherwise <code>false</code> */ public boolean isLive() { return live; } /** * Return a flag indicating whether the lock information may still change. */ public boolean mayChange() { return live; } /** * Return a flag indicating whether the lock is session-scoped * * @return <code>true</code> if the lock is session-scoped; * otherwise <code>false</code> */ public boolean isSessionScoped() { return sessionScoped; } /** * {@inheritDoc} */ public String toString() { StringBuffer buffer = new StringBuffer(); buffer.append('('); if (deep) { buffer.append("deep "); } if (sessionScoped) { buffer.append("session "); } buffer.append("holder:"); if (lockHolder != null) { buffer.append(lockHolder.getUserID()); } else { buffer.append("none"); } buffer.append(')'); return buffer.toString(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -