![JAR search and dependency download from the Maven repository](/logo.png)
org.alfresco.mock.test.MockCategoryService 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.util.Collection;
import java.util.List;
import org.alfresco.query.PagingRequest;
import org.alfresco.query.PagingResults;
import org.alfresco.service.cmr.repository.ChildAssociationRef;
import org.alfresco.service.cmr.repository.NodeRef;
import org.alfresco.service.cmr.repository.StoreRef;
import org.alfresco.service.cmr.search.CategoryService;
import org.alfresco.service.namespace.QName;
import org.alfresco.util.Pair;
public class MockCategoryService implements CategoryService {
@Override
public Collection getChildren(NodeRef categoryRef, Mode mode, Depth depth) {
// TODO Auto-generated method stub
return null;
}
@Override
public Collection getCategories(StoreRef storeRef, QName aspectQName, Depth depth) {
// TODO Auto-generated method stub
return null;
}
@Override
public Collection getClassifications(StoreRef storeRef) {
// TODO Auto-generated method stub
return null;
}
@Override
public Collection getRootCategories(StoreRef storeRef, QName aspectName) {
// TODO Auto-generated method stub
return null;
}
@Override
public PagingResults getRootCategories(StoreRef storeRef, QName aspectName,
PagingRequest pagingRequest, boolean sortByName) {
// TODO Auto-generated method stub
return null;
}
@Override
public PagingResults getRootCategories(StoreRef storeRef, QName aspectName,
PagingRequest pagingRequest, boolean sortByName, String filter) {
// TODO Auto-generated method stub
return null;
}
@Override
public Collection getRootCategories(StoreRef storeRef, QName aspectName, String filter) {
// TODO Auto-generated method stub
return null;
}
@Override
public ChildAssociationRef getCategory(NodeRef parent, QName aspectName, String name) {
// TODO Auto-generated method stub
return null;
}
@Override
public Collection getRootCategories(StoreRef storeRef, QName aspectName, String name,
boolean create) {
// TODO Auto-generated method stub
return null;
}
@Override
public Collection getClassificationAspects() {
// TODO Auto-generated method stub
return null;
}
@Override
public NodeRef createClassification(StoreRef storeRef, QName aspectName, String attributeName) {
// TODO Auto-generated method stub
return null;
}
@Override
public NodeRef createRootCategory(StoreRef storeRef, QName aspectName, String name) {
// TODO Auto-generated method stub
return null;
}
@Override
public NodeRef createCategory(NodeRef parent, String name) {
// TODO Auto-generated method stub
return null;
}
@Override
public void deleteClassification(StoreRef storeRef, QName aspectName) {
// TODO Auto-generated method stub
}
@Override
public void deleteCategory(NodeRef nodeRef) {
// TODO Auto-generated method stub
}
@Override
public List> getTopCategories(StoreRef storeRef, QName aspectName, int count) {
// TODO Auto-generated method stub
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy