⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jcrdavsession.java

📁 jsr170接口的java实现。是个apache的开源项目。
💻 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.webdav.jcr;import org.apache.jackrabbit.webdav.DavException;import org.apache.jackrabbit.webdav.DavServletResponse;import org.apache.jackrabbit.webdav.DavSession;import org.apache.jackrabbit.webdav.DavConstants;import org.slf4j.Logger;import org.slf4j.LoggerFactory;import javax.jcr.Session;import java.util.HashSet;/** * <code>JcrDavSession</code> specific base implementation of the * <code>DavSession</code> interface, which simply wraps a {@link Session} * object. This implementation adds a utility method that allows to * {@link #getRepositorySession() unwrap} the underlying repository session. * <br> * Note, that in this basic implementation the following methods are simply * forwarded to the corresponding call on <code>Session</code>: * <ul> * <li>{@link #getLockTokens()}         =&gt; {@link Session#getLockTokens()}</li> * <li>{@link #addLockToken(String)}    =&gt; {@link Session#addLockToken(String)}</li> * <li>{@link #removeLockToken(String)} =&gt; {@link Session#removeLockToken(String)}</li> * </ul> * Subclasses may overwrite or extend this behaviour. */public abstract class JcrDavSession implements DavSession {    private static Logger log = LoggerFactory.getLogger(JcrDavSession.class);    /** the underlying jcr session */    private final Session session;    /** the lock tokens of this session */    private final HashSet lockTokens = new HashSet();    /**     *     * @param session     */    protected JcrDavSession(Session session) {        this.session = session;    }    /**     *     * @param davSession     * @throws DavException     */    public static void checkImplementation(DavSession davSession) throws DavException {        if (!(davSession instanceof JcrDavSession)) {            throw new DavException(DavServletResponse.SC_INTERNAL_SERVER_ERROR, "JCR specific DavSession expected. Found: " + davSession);        }    }    /**     *     * @param davSession     * @return     * @throws DavException     */    public static Session getRepositorySession(DavSession davSession) throws DavException {        checkImplementation(davSession);        return ((JcrDavSession)davSession).getRepositorySession();    }    /**     * Unwrap the {@link Session repository session} object.     *     * @return the session object wrapped by this <code>DavSession</code>     */    public Session getRepositorySession() {        return session;    }    //---------------------------------------------------------< DavSession >---    /**     *     * @param token     * @see DavSession#addLockToken(String)     */    public void addLockToken(String token) {        session.addLockToken(getJCRLockToken(token));        lockTokens.add(token);    }    /**     *     * @return     * @see DavSession#getLockTokens()     */    public String[] getLockTokens() {        return (String[]) lockTokens.toArray(new String[lockTokens.size()]);    }    /**     *     * @param token     * @see DavSession#removeLockToken(String)     */    public void removeLockToken(String token) {        session.removeLockToken(getJCRLockToken(token));        lockTokens.remove(token);    }    //------------------------------------------------------------< private >---    private static String getJCRLockToken(String token) {        if (token.startsWith(DavConstants.OPAQUE_LOCK_TOKEN_PREFIX)) {            return token.substring(DavConstants.OPAQUE_LOCK_TOKEN_PREFIX.length());        } else {            return token;        }    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -