Skip to content
This repository has been archived by the owner on Apr 14, 2022. It is now read-only.

Commit

Permalink
fix original link (just omit for now)
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/incubator/chemistry/trunk@927737 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
Jens Hübel committed Mar 26, 2010
1 parent 6ff2d85 commit c3ee413
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -210,7 +210,7 @@ public void fillObjectInfoHolder(CallContext context, String repositoryId, Objec
objInfo.setIsCurrentVersion(getBooleanProperty(properties, PropertyIds.CMIS_IS_LATEST_VERSION)); objInfo.setIsCurrentVersion(getBooleanProperty(properties, PropertyIds.CMIS_IS_LATEST_VERSION));
objInfo.setVersionSeriesId(getStringProperty(properties, PropertyIds.CMIS_VERSION_SERIES_ID)); objInfo.setVersionSeriesId(getStringProperty(properties, PropertyIds.CMIS_VERSION_SERIES_ID));
objInfo.setWorkingCopyId(getStringProperty(properties, PropertyIds.CMIS_VERSION_SERIES_CHECKED_OUT_ID)); objInfo.setWorkingCopyId(getStringProperty(properties, PropertyIds.CMIS_VERSION_SERIES_CHECKED_OUT_ID));
objInfo.setWorkingCopyOriginalId(getStringProperty(properties, PropertyIds.CMIS_VERSION_SERIES_CHECKED_OUT_ID)); objInfo.setWorkingCopyOriginalId(null);
} else { // unversioned document } else { // unversioned document
objInfo.setIsCurrentVersion (true); objInfo.setIsCurrentVersion (true);
objInfo.setVersionSeriesId(null); objInfo.setVersionSeriesId(null);
Expand Down Expand Up @@ -250,7 +250,7 @@ else if (objInfo.getBaseType() == BaseObjectTypeIds.CMIS_DOCUMENT) {
List<String> targetIds = new ArrayList<String>(); List<String> targetIds = new ArrayList<String>();
getRelationshipIds(objData, sourceIds, targetIds); getRelationshipIds(objData, sourceIds, targetIds);


// Relationships, currently not supported by in-memory provider // Relationships, currently not supported
objInfo.setSupportsRelationships(supportsRelationships); objInfo.setSupportsRelationships(supportsRelationships);
objInfo.setRelationshipSourceIds(sourceIds); objInfo.setRelationshipSourceIds(sourceIds);
objInfo.setRelationshipTargetIds(targetIds); objInfo.setRelationshipTargetIds(targetIds);
Expand Down

0 comments on commit c3ee413

Please sign in to comment.