package at.gv.egovernment.moa.spss.api.impl; import java.io.InputStream; import at.gv.egovernment.moa.spss.api.xmlverify.TransformParameterBinary; /** * Default implementation of TransformParameterBinary. * * @author Fatemeh Philippi * @version $Id$ */ public class TransformParameterBinaryImpl extends TransformParameterImpl implements TransformParameterBinary { /** The binary content as a stream. */ private InputStream binaryContent; /** * Sets the binary content as a stream. * * @param binaryContent The binary content as a stream. */ public void setBinaryContent(InputStream binaryContent) { this.binaryContent = binaryContent; } public InputStream getBinaryContent() { return binaryContent; } /** * Gets the TransformParameter type. * * @return BINARY_TRANSFORMPARAMETER */ public int getTransformParameterType() { return BINARY_TRANSFORMPARAMETER; } }