package at.gv.egovernment.moa.spss.api.xmlsign; import java.util.List; /** * A CreateSignatureEnvironmentProfile containing the profile * data explicitly. * * @author Patrick Peck * @version $Id$ */ public interface CreateSignatureEnvironmentProfileExplicit extends CreateSignatureEnvironmentProfile { /** * Gets the location and index of where to insert the signature into the * signature environment. * * @return The location and index of the signature in the signature * environment. */ public CreateSignatureLocation getCreateSignatureLocation(); /** * Gets the supplemental information. * * @return The supplemental information. */ public List getSupplements(); }