package at.gv.egovernment.moa.spss.api.xmlverify; import at.gv.egovernment.moa.spss.api.common.Content; /** * Encapsulates a signature. * * @author Patrick Peck * @author Stephan Grill * @version $Id$ */ public interface VerifySignatureInfo { /** * Gets the content of the VerifySignatureEnvironment element. * * @return A MOAElement containing the * VerifySignatureEnvironment in a DOM-like structure. */ public Content getVerifySignatureEnvironment(); /** * Gets the location of the signature. * * @return The location of the signature within the signature environment. */ public VerifySignatureLocation getVerifySignatureLocation(); }