Merged SWIFT to HEAD

25250: SWIFT branch moved to 4.0.0 schema 5000
   25435: Initial checkin for ALF-7069
   25450: ALF-7069:
          - add maxResults to SOLR DAO
          - refactoring
   25480: ALF-7069: further enhancements + unit tests
          - include/exclude aspects, store protocol + identifier

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@27999 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2011-05-24 01:02:38 +00:00
parent 05d1778a5d
commit 0488757523
13 changed files with 904 additions and 6 deletions

View File

@@ -0,0 +1,14 @@
package org.alfresco.repo.domain.solr;
/**
* Interface for SOLR transaction objects.
*
* @since 4.0
*/
public interface SOLRTransaction
{
public Long getId();
public Long getCommitTimeMs();
public int getUpdates();
public int getDeletes();
}