labelversionselector.java

来自「jsr170接口的java实现。是个apache的开源项目。」· Java 代码 · 共 114 行

JAVA
114
字号
/* * 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.version;import javax.jcr.RepositoryException;import javax.jcr.version.Version;import javax.jcr.version.VersionException;import javax.jcr.version.VersionHistory;/** * This Class implements a version selector that selects a version by label. * * <xmp> * V1.0 * V1.1 - "foo" * * new LabelVersionSelector("foo").select() --> V1.1 * new LabelVersionSelector("bar").select() --> null * * </xmp> */public class LabelVersionSelector implements VersionSelector {    /**     * a versionlabel hint     */    private String label = null;    /**     * Creates a <code>LabelVersionSelector</code> that will try to select a     * version with the given label.     *     * @param label     */    public LabelVersionSelector(String label) {        this.label = label;    }    /**     * Returns the label hint     *     * @return the label hint.     */    public String getLabel() {        return label;    }    /**     * Sets the label hint     *     * @param label     */    public void setLabel(String label) {        this.label = label;    }    /**     * Selects a version from the given version history using the previously     * assigned hint in the following order: name, label, date, latest.     *     * @param versionHistory     * @return     * @throws RepositoryException     */    public Version select(VersionHistory versionHistory)            throws RepositoryException {        return selectByLabel(versionHistory, label);    }    /**     * Selects a version by label     *     * @param history     * @param label     * @return the version with the given label or <code>null</code>     * @throws RepositoryException     */    public static Version selectByLabel(VersionHistory history, String label)            throws RepositoryException {        try {            return history.getVersionByLabel(label);        } catch (VersionException e) {            return null;        }    }    /**     * returns debug information     * @return debug information     */    public String toString() {        StringBuffer ret = new StringBuffer();        ret.append("LabelVersionSelector(");        ret.append("label=");        ret.append(label);        ret.append(")");        return ret.toString();    }}

⌨️ 快捷键说明

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