![JAR search and dependency download from the Maven repository](/logo.png)
org.alfresco.mock.test.ws.MockTemplateProcessorRegistry 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.ws;
import org.springframework.extensions.webscripts.TemplateProcessor;
import org.springframework.extensions.webscripts.TemplateProcessorRegistry;
public class MockTemplateProcessorRegistry extends TemplateProcessorRegistry {
@Override
public String findValidTemplatePath(final String path) {
return "";
}
@Override
public TemplateProcessor getTemplateProcessor(String path) {
return new MockTemplateProcessor();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy