Merged V2.2 to HEAD

10963: Merged DEV/LARGE_COLLECTION_PROPERTIES_2.2.1 to V2.2
          - PersonService: Lucene removal
          - Lucene optimizations (in progress)
          - Multi-valued and locale-specific properties persisted in alf_node_properties
          - Removal of unused AVM tables
   10987: Oracle dialects and enhanced SQL patch support
          - Only support Alfresco's 9i and 10g dialects (with auto-switching)
          - SQL script patches can now apply selectively to ranges
   11007: Test to check cached retrieval of QNames


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@11206 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2008-10-06 13:26:18 +00:00
parent dd2ce5da0a
commit 6f302f0350
100 changed files with 8759 additions and 3628 deletions

View File

@@ -24,7 +24,6 @@
*/
package org.alfresco.repo.domain;
import org.alfresco.repo.domain.StoreKey;
import org.alfresco.service.cmr.repository.StoreRef;
/**
@@ -34,21 +33,36 @@ import org.alfresco.service.cmr.repository.StoreRef;
*/
public interface Store
{
/**
* @return Returns the key for the class
*/
public StoreKey getKey();
/**
* @return Returns the current version number used for optimistic locking
*/
public Long getVersion();
/**
* @return Returns the unique ID of the object
*/
public Long getId();
/**
* @param key the key uniquely identifying this store
* @return the store protocol
*/
public void setKey(StoreKey key);
public String getProtocol();
/**
* @param protocol the store protocol
*/
public void setProtocol(String protocol);
/**
* @return the store identifier
*/
public String getIdentifier();
/**
* @param identifier the store identifier
*/
public void setIdentifier(String identifier);
/**
* @return Returns the root of the store
*/