Derek Hulley 0488757523 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
2011-05-24 01:02:38 +00:00

15 lines
264 B
Java

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();
}