package at.gv.egovernment.moa.spss.api.impl; import at.gv.egovernment.moa.spss.api.common.Base64Transform; /** * Default implementation of Base64Transform. * * @author Fatemeh Philippi * @version $Id$ */ public class Base64TransformImpl extends TransformImpl implements Base64Transform { /** * Create a new Base64TransformImpl object. */ public Base64TransformImpl() { setAlgorithmURI(BASE64_DECODING); } }