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

org.drools.repository.remoteapi.Response Maven / Gradle / Ivy

There is a newer version: 5.1.1
Show newest version
package org.drools.repository.remoteapi;

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Calendar;



public abstract class Response {
	public abstract void writeData(OutputStream out) throws IOException ;
	public Calendar lastModified;


	public static class Text extends Response {
		String data;

		public Text() {}

		public Text(String s) {
			this.data = s;
		}
		@Override
		public void writeData(OutputStream out) throws IOException {
			out.write(data.getBytes());
		}
	}

	public static class Binary extends Response {

		InputStream stream;



		@Override
		public void writeData(OutputStream out) throws IOException {
			try {
				InputStream in = stream;
				if (!(out instanceof BufferedOutputStream)) out = new BufferedOutputStream(out);
				if (!(in instanceof BufferedInputStream)) in = new BufferedInputStream(in);
	            final byte[] buf = new byte[1024];
	            int len = 0;
	            while ( (len = in.read( buf )) >= 0 ) {
	                out.write( buf,
	                           0,
	                           len );
	            }
			} finally {
	            out.flush();
	            out.close();
	            stream.close();
			}
		}

	}


}






© 2015 - 2025 Weber Informatics LLC | Privacy Policy