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

com.jfplugin.mail.mockhttp.MockHttpServletResponse Maven / Gradle / Ivy

package com.jfplugin.mail.mockhttp;

import java.io.PrintWriter;
import java.io.StringWriter;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;

/**
 * Created by farmer on 16/8/31.
 *
 * @author [email protected]
 */
public class MockHttpServletResponse implements InvocationHandler {

	
	private PrintWriter printWriter =  new MockPrintWriter(new StringWriter());
	
    public Object invoke(Object o, Method method, Object[] objects) throws Throwable {
        if ("getWriter".equals(method.getName())) {
            return printWriter;
        }
        return null;
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy