package at.gv.egovernment.moa.spss.api.xmlsign; import java.util.List; /** * Object that encapsulates a request to create an XML Signature. * * @author Patrick Peck * @author Stephan Grill * @version $Id$ */ public interface CreateXMLSignatureRequest { /** * Gets the identifier for the keys to be used for the signature. * * @return The identifier for the keys to be used. */ public String getKeyIdentifier(); /** * Gets the information of the singleSignatureInfo elements. * * @return The information of singleSignatureInfo elements. */ public List getSingleSignatureInfos(); }