All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.alfresco.mock.test.ws.MockRuntime Maven / Gradle / Ivy

Go to download

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