![JAR search and dependency download from the Maven repository](/logo.png)
org.alfresco.mock.test.MockPagingResults Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alfresco-tests Show documentation
Show all versions of alfresco-tests Show documentation
This is a jar project based on mock classes to test fastly the alfresco applications
The newest version!
package org.alfresco.mock.test;
import java.io.Serializable;
import java.util.List;
import org.alfresco.query.PagingResults;
import org.alfresco.util.Pair;
public class MockPagingResults implements PagingResults, Serializable {
private List files;
public MockPagingResults(List files) {
this.files = files;
}
@Override
public List getPage() {
return files;
}
@Override
public boolean hasMoreItems() {
// TODO Auto-generated method stub
return false;
}
@Override
public Pair getTotalResultCount() {
// TODO Auto-generated method stub
return null;
}
@Override
public String getQueryExecutionId() {
// TODO Auto-generated method stub
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy