package at.gv.egovernment.moa.spss.api.impl; import at.gv.egovernment.moa.spss.api.common.Transform; /** * @author Fatemeh Philippi * @version $Id$ */ public class TransformImpl implements Transform { /** The URI identifying the transformation algorithm. */ private String algorithmURI; /** * Sets the URI identifying the transformation algorithm. * * @param algorithmURI The URI identifying the transformation algorithm. */ public void setAlgorithmURI(String algorithmURI) { this.algorithmURI = algorithmURI; } public String getAlgorithmURI() { return algorithmURI; } }