Mercurial > hg > digilib-old
view common/src/main/java/digilib/io/ImageStream.java @ 1132:d47513632da5
additional annotationSafeTokenUrl for https url, used with passwords.
we don't always use https for issues with self-signed certs.
author | robcast |
---|---|
date | Tue, 13 Nov 2012 19:29:23 +0100 |
parents | 28d007673346 |
children |
line wrap: on
line source
/** * */ package digilib.io; import java.io.InputStream; /** * @author casties * */ public class ImageStream extends ImageInput { protected InputStream stream = null; /** Create ImageStream from InputStream and String. * * @param stream * @param mimeType mime-type */ public ImageStream(InputStream stream, String mimeType) { this.stream = stream; this.mimetype = mimeType; } /* * (non-Javadoc) * * @see digilib.io.ImageInput#hasInputStream() */ @Override public boolean hasInputStream() { return true; } /* * (non-Javadoc) * * @see digilib.io.ImageInput#getInputStream() */ @Override public InputStream getInputStream() { return stream; } }