//###################################################################
//
// This class defines a type that is used to return the result from
// the method calls
//###################################################################

package Servlet.Interface;

public class MethodReturn
{
    public String MIMEType;
    public byte[] buffer;

    public MethodReturn(String MIMEType, byte[] buffer)
    {
        this.MIMEType = MIMEType;
        this.buffer = buffer;
    }

    public MethodReturn()
    {
    }
}




