All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.chemistry.opencmis.commons.spi.VersioningService Maven / Gradle / Ivy

The newest version!
/*
 * 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.chemistry.opencmis.commons.spi;

import java.util.List;

import org.apache.chemistry.opencmis.commons.data.Acl;
import org.apache.chemistry.opencmis.commons.data.ContentStream;
import org.apache.chemistry.opencmis.commons.data.ExtensionsData;
import org.apache.chemistry.opencmis.commons.data.ObjectData;
import org.apache.chemistry.opencmis.commons.data.Properties;
import org.apache.chemistry.opencmis.commons.enums.IncludeRelationships;

/**
 * Versioning Service interface.
 * 
 * 

* * See the CMIS 1.0 and CMIS 1.1 specifications for details on the operations, parameters, * exceptions and the domain model. * *

*/ public interface VersioningService { /** * Create a private working copy of the document. * * @param repositoryId * the identifier for the repository * @param objectId * input: the identifier for the document that should be checked * out, output: the identifier for the newly created PWC * @param extension * extension data * @param contentCopied * output: indicator if the content of the original document has * been copied to the PWC */ void checkOut(String repositoryId, Holder objectId, ExtensionsData extension, Holder contentCopied); /** * Reverses the effect of a check-out. * * @param repositoryId * the identifier for the repository * @param objectId * the identifier for the PWC * @param extension * extension data */ void cancelCheckOut(String repositoryId, String objectId, ExtensionsData extension); /** * Checks-in the private working copy (PWC) document. * * The stream in {@code contentStream} is consumed but not closed by this * method. * * @param repositoryId * the identifier for the repository * @param objectId * input: the identifier for the PWC, output: the identifier for * the newly created version document * @param major * indicator if the new version should become a major ( * {@code true}) or minor ({@code false}) version * @param properties * (optional) the property values that must be applied * to the newly created document object * @param contentStream * (optional) the content stream that must be stored for * the newly created document object * @param checkinComment * (optional) a version comment * @param policies * (optional) a list of policy IDs that must be applied * to the newly created document object * @param addAces * (optional) a list of ACEs that must be added to the * newly created document object * @param removeAces * (optional) a list of ACEs that must be removed from * the newly created document object * @param extension * extension data */ void checkIn(String repositoryId, Holder objectId, Boolean major, Properties properties, ContentStream contentStream, String checkinComment, List policies, Acl addAces, Acl removeAces, ExtensionsData extension); /** * Get the latest document object in the version series. * * @param repositoryId * the identifier for the repository * @param objectId * the identifier for the object * @param versionSeriesId * the version series ID * @param filter * (optional) a comma-separated list of query names that * defines which properties must be returned by the repository * (default is repository specific) * @param extension * extension data * @return the document object */ ObjectData getObjectOfLatestVersion(String repositoryId, String objectId, String versionSeriesId, Boolean major, String filter, Boolean includeAllowableActions, IncludeRelationships includeRelationships, String renditionFilter, Boolean includePolicyIds, Boolean includeAcl, ExtensionsData extension); /** * Get a subset of the properties for the latest document object in the * version series. * * @param repositoryId * the identifier for the repository * @param objectId * the identifier for the object * @param versionSeriesId * the version series ID * @param filter * (optional) a comma-separated list of query names that * defines which properties must be returned by the repository * (default is repository specific) * @param extension * extension data * @return the document properties */ Properties getPropertiesOfLatestVersion(String repositoryId, String objectId, String versionSeriesId, Boolean major, String filter, ExtensionsData extension); /** * Returns the list of all document objects in the specified version series, * sorted by the property "cmis:creationDate" descending. * * Either the {@code objectId} or the {@code versionSeriesId} parameter must * be set. * * @param repositoryId * the identifier for the repository * @param objectId * the identifier for the object * @param versionSeriesId * the identifier for the object * @param filter * (optional) a comma-separated list of query names that * defines which properties must be returned by the repository * (default is repository specific) * @param includeAllowableActions * (optional) if {@code true}, then the repository must * return the allowable actions for the objects (default is * {@code false}) * @param extension * extension data * @return the complete version history of the version series */ List getAllVersions(String repositoryId, String objectId, String versionSeriesId, String filter, Boolean includeAllowableActions, ExtensionsData extension); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy