![JAR search and dependency download from the Maven repository](/logo.png)
org.alfresco.mock.test.ws.MockWriter 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.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