mirror of
				https://github.com/Alfresco/alfresco-community-repo.git
				synced 2025-10-29 15:21:53 +00:00 
			
		
		
		
	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
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			264 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			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();
 | 
						|
}
 |