package at.gv.egovernment.moa.spss.api.impl; import at.gv.egovernment.moa.spss.api.xmlsign.CreateSignatureLocation; /** * Default implementation of CreateSignatureLocation. * * @author Fatemeh Philippi * @version $Id$ */ public class CreateSignatureLocationImpl extends ElementSelectorImpl implements CreateSignatureLocation { /** The index of the newly created signature. */ private int index; /** * Sets the index of the newly created signature. * * @param index The index of the newly created signature. */ public void setIndex(int index) { this.index = index; } public int getIndex() { return index; } }