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

net.sf.jsptest.compiler.jsp20.mock.MockServletInputStream Maven / Gradle / Ivy

package net.sf.jsptest.compiler.jsp20.mock;

import java.io.ByteArrayInputStream;
import java.io.IOException;
import javax.servlet.ServletInputStream;

/**
 * Mock implementation of ServletInputStream.
 * 
 * @author Lasse Koskela
 */
public class MockServletInputStream extends ServletInputStream {

    private ByteArrayInputStream stream;

    public MockServletInputStream(byte[] data) {
        stream = new ByteArrayInputStream(data);
    }

    public int read() throws IOException {
        return stream.read();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy