This project has retired. For details please refer to its Attic page.
PropertyIds xref

1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   * http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.chemistry.opencmis.commons;
20  
21  /**
22   * Collection of CMIS property ids.
23   */
24  public final class PropertyIds {
25  
26      private PropertyIds() {
27      }
28  
29      // ---- base ----
30      public static final String NAME = "cmis:name";
31      public static final String OBJECT_ID = "cmis:objectId";
32      public static final String OBJECT_TYPE_ID = "cmis:objectTypeId";
33      public static final String BASE_TYPE_ID = "cmis:baseTypeId";
34      public static final String CREATED_BY = "cmis:createdBy";
35      public static final String CREATION_DATE = "cmis:creationDate";
36      public static final String LAST_MODIFIED_BY = "cmis:lastModifiedBy";
37      public static final String LAST_MODIFICATION_DATE = "cmis:lastModificationDate";
38      public static final String CHANGE_TOKEN = "cmis:changeToken";
39  
40      // ---- document ----
41      public static final String IS_IMMUTABLE = "cmis:isImmutable";
42      public static final String IS_LATEST_VERSION = "cmis:isLatestVersion";
43      public static final String IS_MAJOR_VERSION = "cmis:isMajorVersion";
44      public static final String IS_LATEST_MAJOR_VERSION = "cmis:isLatestMajorVersion";
45      public static final String VERSION_LABEL = "cmis:versionLabel";
46      public static final String VERSION_SERIES_ID = "cmis:versionSeriesId";
47      public static final String IS_VERSION_SERIES_CHECKED_OUT = "cmis:isVersionSeriesCheckedOut";
48      public static final String VERSION_SERIES_CHECKED_OUT_BY = "cmis:versionSeriesCheckedOutBy";
49      public static final String VERSION_SERIES_CHECKED_OUT_ID = "cmis:versionSeriesCheckedOutId";
50      public static final String CHECKIN_COMMENT = "cmis:checkinComment";
51      public static final String CONTENT_STREAM_LENGTH = "cmis:contentStreamLength";
52      public static final String CONTENT_STREAM_MIME_TYPE = "cmis:contentStreamMimeType";
53      public static final String CONTENT_STREAM_FILE_NAME = "cmis:contentStreamFileName";
54      public static final String CONTENT_STREAM_ID = "cmis:contentStreamId";
55  
56      // ---- folder ----
57      public static final String PARENT_ID = "cmis:parentId";
58      public static final String ALLOWED_CHILD_OBJECT_TYPE_IDS = "cmis:allowedChildObjectTypeIds";
59      public static final String PATH = "cmis:path";
60  
61      // ---- relationship ----
62      public static final String SOURCE_ID = "cmis:sourceId";
63      public static final String TARGET_ID = "cmis:targetId";
64  
65      // ---- policy ----
66      public static final String POLICY_TEXT = "cmis:policyText";
67  }