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

org.alfresco.mock.test.ws.MockWriter 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.io.IOException;
import java.io.Writer;
import java.util.Map;

public class MockWriter extends Writer {

	private Map model;

	@Override
	public void write(char[] cbuf, int off, int len) throws IOException {
	}

	@Override
	public void flush() throws IOException {
	}

	@Override
	public void close() throws IOException {
	}

	public Map getModel() {
		return model;
	}

	public void setModel(Map model) {
		this.model = model;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy