mirror of
				https://github.com/Alfresco/alfresco-community-repo.git
				synced 2025-10-29 15:21:53 +00:00 
			
		
		
		
	28741: Merged DEV/TEMPORARY to V3.4-BUG-FIX
      28740: ALF-8993: IMAP favourite star is not visible if imap is enabled via JMX
         The org.alfresco.repo.imap.ImapService interface was extended to expose getEnabled() and made the webscript to call ImapService.getEnabled().
   28742: ALF-8801: Broken French strings
   28745: ALF-6470: French string correction
   28746: ALF-5607: Installer deletion of directories on installation cancel.
   28756: ALF-9211: Install fails when path selected that contains accents or double byte chars (e.g. Japanese)
   - Fix from Bitrock
   - Not internationalized yet
   28758: Merged DEV to V3.4-BUG-FIX
      28743: ALF-8029: JSON returned by some audit queries not valide
             Quote user in query.get.json.ftl if it has value.
   28761: Merged DEV to V3.4-BUG-FIX
      28739: ALF-9123 : "Content URL conversion failed" error being thrown
      Note: Actually changed the implementation but the principle remains.
      In future, use a thread-safe boolean e.g. AtomicBoolean to carry data
      around about the running state; don't use a class member variable as
      it can be manipulated by competing threads, etc.
   28762: Fix ALF-9376: Typo in Version2Model
   28763: Merged DEV to V3.4-BUG-FIX
      28754: ALF-8461: Invalid property cm:source (cm:copiedFrom) causes not be become sys:incomplete
             Configurable property called 'propertiesToIgnore' was added to IncompleteNodeTagger,and configured to ignore "cm:source".
      Merge note: I fixed the stored 'propertiesToIgnore' to be a Set<QName> to prevent unnecessary conversions
   28764: ALF-9036: Fix NPE on XForm session timeout
   28765: ALF-9211: Externalized new installer message
   - Needs localizing
   28789: ALF-9407: Single quote characters in messages containing {} need to be doubled
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@28793 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
		
	
		
			
				
	
	
		
			125 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			125 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| /*
 | |
|  * Copyright (C) 2005-2010 Alfresco Software Limited.
 | |
|  *
 | |
|  * This file is part of Alfresco
 | |
|  *
 | |
|  * Alfresco is free software: you can redistribute it and/or modify
 | |
|  * it under the terms of the GNU Lesser General Public License as published by
 | |
|  * the Free Software Foundation, either version 3 of the License, or
 | |
|  * (at your option) any later version.
 | |
|  *
 | |
|  * Alfresco is distributed in the hope that it will be useful,
 | |
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|  * GNU Lesser General Public License for more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU Lesser General Public License
 | |
|  * along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
 | |
|  */
 | |
| package org.alfresco.repo.version;
 | |
| 
 | |
| import org.alfresco.service.namespace.QName;
 | |
| 
 | |
| /**
 | |
|  * Version2 Model Constants used by version2Store implementation
 | |
|  */
 | |
| public interface Version2Model extends VersionBaseModel
 | |
| {
 | |
|     /**
 | |
|      * Namespace
 | |
|      */
 | |
|     public static final String NAMESPACE_URI = "http://www.alfresco.org/model/versionstore/2.0";
 | |
|     
 | |
|     /**
 | |
|      * The store id
 | |
|      */
 | |
|     public static final String STORE_ID = "version2Store";
 | |
|     
 | |
|     /** The version store root aspect */
 | |
|     public static final QName ASPECT_VERSION_STORE_ROOT = QName.createQName(NAMESPACE_URI, ASPECT_LOCALNAME_VERSION_STORE_ROOT);
 | |
|     
 | |
|     /**
 | |
|      * Version history type
 | |
|      */
 | |
|     public static final QName TYPE_QNAME_VERSION_HISTORY = QName.createQName(NAMESPACE_URI, TYPE_VERSION_HISTORY);
 | |
|     
 | |
|     /**
 | |
|      * Version history properties and associations
 | |
|      */
 | |
|     public static final QName PROP_QNAME_VERSIONED_NODE_ID = QName.createQName(NAMESPACE_URI, PROP_VERSIONED_NODE_ID);
 | |
|     public static final QName ASSOC_ROOT_VERSION = QName.createQName(NAMESPACE_URI, ASSOC_LOCALNAME_ROOT_VERSION);
 | |
|     
 | |
|     /**
 | |
|      * Version aspect + aspect properties
 | |
|      */
 | |
|     public static final String ASPECT_LOCALNAME_VERSION = "version";
 | |
|     public static final QName ASPECT_VERSION = QName.createQName(NAMESPACE_URI, ASPECT_LOCALNAME_VERSION);
 | |
|     
 | |
|     public static final String PROP_VERSION_DESCRIPTION = "versionDescription"; // maps from description
 | |
|     
 | |
|     public static final QName PROP_QNAME_VERSION_LABEL = QName.createQName(NAMESPACE_URI, PROP_VERSION_LABEL);
 | |
|     
 | |
|     /**
 | |
|      * @deprecated
 | |
|      */
 | |
|     public static final QName PROP_QNAME_VERSION_NUMBER = QName.createQName(NAMESPACE_URI, PROP_VERSION_NUMBER);
 | |
|     
 | |
|     public static final QName PROP_QNAME_VERSION_DESCRIPTION = QName.createQName(NAMESPACE_URI, PROP_VERSION_DESCRIPTION);
 | |
|     
 | |
|     //  frozen sys:referenceable properties (x4)
 | |
|     
 | |
|     public static final String PROP_FROZEN_NODE_REF = "frozenNodeRef";
 | |
|     public static final QName PROP_QNAME_FROZEN_NODE_REF = QName.createQName(NAMESPACE_URI, PROP_FROZEN_NODE_REF);
 | |
|     
 | |
|     public static final String PROP_FROZEN_NODE_DBID = "frozenNodeDbId";
 | |
|     public static final QName PROP_QNAME_FROZEN_NODE_DBID = QName.createQName(NAMESPACE_URI, PROP_FROZEN_NODE_DBID);
 | |
|     
 | |
|     // frozen cm:auditable properties (x5)
 | |
|     
 | |
|     public static final String PROP_FROZEN_CREATOR = "frozenCreator";
 | |
|     public static final QName PROP_QNAME_FROZEN_CREATOR = QName.createQName(NAMESPACE_URI, PROP_FROZEN_CREATOR);
 | |
|     
 | |
|     public static final String PROP_FROZEN_CREATED = "frozenCreated";
 | |
|     public static final QName PROP_QNAME_FROZEN_CREATED = QName.createQName(NAMESPACE_URI, PROP_FROZEN_CREATED);
 | |
|     
 | |
|     public static final String PROP_FROZEN_MODIFIER = "frozenModifier";
 | |
|     public static final QName PROP_QNAME_FROZEN_MODIFIER = QName.createQName(NAMESPACE_URI, PROP_FROZEN_MODIFIER);
 | |
|     
 | |
|     public static final String PROP_FROZEN_MODIFIED = "frozenModified";
 | |
|     public static final QName PROP_QNAME_FROZEN_MODIFIED = QName.createQName(NAMESPACE_URI, PROP_FROZEN_MODIFIED);
 | |
|     
 | |
|     public static final String PROP_FROZEN_ACCESSED = "frozenAccessed";
 | |
|     public static final QName PROP_QNAME_FROZEN_ACCESSED = QName.createQName(NAMESPACE_URI, PROP_FROZEN_ACCESSED);
 | |
|     
 | |
|     
 | |
|     public static final QName ASSOC_SUCCESSOR = QName.createQName(NAMESPACE_URI, "successor");
 | |
|     
 | |
|     public static final String PROP_METADATA_PREFIX = "metadata-";
 | |
|     
 | |
|     public static final String PROP_VERSION_TYPE = "versionType";
 | |
|     
 | |
|     /**
 | |
|      * Child relationship names
 | |
|      */
 | |
|     public static final QName CHILD_QNAME_VERSION_HISTORIES = QName.createQName(NAMESPACE_URI, CHILD_VERSION_HISTORIES);
 | |
|     public static final QName CHILD_QNAME_VERSIONS = QName.createQName(NAMESPACE_URI, CHILD_VERSIONS);
 | |
|     public static final QName CHILD_QNAME_VERSIONED_ASSOCS = QName.createQName(NAMESPACE_URI, CHILD_VERSIONED_ASSOCS);
 | |
|     
 | |
|     /**
 | |
|      * Versioned assoc type & properties
 | |
|      */
 | |
|     public static final QName TYPE_QNAME_VERSIONED_ASSOC = QName.createQName(NAMESPACE_URI, TYPE_VERSIONED_ASSOC);
 | |
|     
 | |
|     public static final String PROP_ASSOC_DBID = "assocDbId";
 | |
|     public static final QName PROP_QNAME_ASSOC_DBID = QName.createQName(NAMESPACE_URI, PROP_ASSOC_DBID);
 | |
|     
 | |
|     // Used by ML service
 | |
|     
 | |
|     /**
 | |
|      * Created version associated to the deleted translations of an mlContainer
 | |
|      */
 | |
|     
 | |
|     public static final QName PROP_QNAME_TRANSLATION_VERSIONS = QName.createQName(VersionModel.NAMESPACE_URI, PROP_TRANSLATION_VERSIONS);
 | |
| }
 | |
| 
 |