View Javadoc

1   /*
2    *  Copyright 2011 Hippo.
3    *
4    *  Licensed under the Apache License, Version 2.0 (the "License");
5    *  you may not use this file except in compliance with the License.
6    *  You may obtain a copy of the License at
7    *
8    *       http://www.apache.org/licenses/LICENSE-2.0
9    *
10   *  Unless required by applicable law or agreed to in writing, software
11   *  distributed under the License is distributed on an "AS IS" BASIS,
12   *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   *  See the License for the specific language governing permissions and
14   *  limitations under the License.
15   */
16  package org.onehippo.forge.cmisreplication;
17  
18  public interface CmisReplicationTypes {
19  
20      public static final String HIPPO_HANDLE = "hippo:handle";
21      public static final String HIPPO_HARD_HANDLE = "hippo:hardhandle";
22      public static final String HIPPO_HARD_DOCUMENT = "hippo:harddocument";
23      public static final String HIPPO_TRANSLATED = "hippo:translated";
24      public static final String HIPPO_TRANSLATION = "hippo:translation";
25      public static final String HIPPO_RESOURCE = "hippo:resource";
26      public static final String HIPPO_AVAILABILITY = "hippo:availability";
27  
28      public static final String MIX_REFERENCEABLE = "mix:referenceable";
29  
30  
31      public static final String HIPPOGALLERY_ASSET = "hippogallery:asset";
32  
33  
34      public static final String HIPPO_ASSET_GALLERY = "hippogallery:stdAssetGallery";
35      public static final String HIPPO_EXAMPLE_ASSET_SET = "hippogallery:exampleAssetSet";
36  
37      public static final String HIPPOSTD_GALLERY_TYPE = "hippostd:gallerytype";
38      public static final String HIPPOSTD_FOLDER_TYPE = "hippostd:foldertype";
39  
40      public static final String EXAMPLE_ASSET_SET = "cmisreplication:exampleAssetSet";
41      /**
42       * Node Mixin type for nodes representing replicated CMIS document.
43       */
44      public static final String CMIS_DOCUMENT_TYPE = "cmisreplication:cmisdocument";
45  
46      public static final String CMIS_OBJECT_ID = "cmisreplication:objectId";
47      public static final String CMIS_NAME = "cmisreplication:name";
48      public static final String CMIS_CREATED_BY = "cmisreplication:createdBy";
49      public static final String CMIS_CREATION_DATE = "cmisreplication:creationDate";
50      public static final String CMIS_LAST_MODIFIED_BY = "cmisreplication:lastModifiedBy";
51      public static final String CMIS_LAST_MODIFICATION_DATE = "cmisreplication:lastModificationDate";
52      public static final String CMIS_VERSION_LABEL = "cmisreplication:versionLabel";
53      String HIPPO_LANGUAGE = "hippo:language";
54      String HIPPO_MESSAGE = "hippo:message";
55  }