![JAR search and dependency download from the Maven repository](/logo.png)
org.alfresco.mock.test.ws.MockRuntime 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 java.util.HashMap;
import java.util.Map;
import org.springframework.extensions.webscripts.Container;
import org.springframework.extensions.webscripts.Runtime;
import org.springframework.extensions.webscripts.WebScriptSession;
public class MockRuntime implements Runtime {
private Map templateParameters = new HashMap();
@Override
public String getName() {
// TODO Auto-generated method stub
return null;
}
@Override
public WebScriptSession getSession() {
// TODO Auto-generated method stub
return null;
}
@Override
public Container getContainer() {
// TODO Auto-generated method stub
return null;
}
@Override
public Map getScriptParameters() {
// TODO Auto-generated method stub
return null;
}
@Override
public Map getTemplateParameters() {
return templateParameters;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy