模块  java.xml.crypto
软件包  javax.xml.crypto.dsig

Interface SignatureProperty

  • All Superinterfaces:
    XMLStructure

    public interface SignatureProperty
    extends XMLStructure
    在XML的表示SignatureProperty元件中的定义, W3C Recommendation for XML-Signature Syntax and Processing XML Schema Definition定义为:
       <element name="SignatureProperty" type="ds:SignaturePropertyType"/> <complexType name="SignaturePropertyType" mixed="true"> <choice maxOccurs="unbounded"> <any namespace="##other" processContents="lax"/> <!-- (1,1) elements from (1, unbounded) namespaces --> </choice> <attribute name="Target" type="anyURI" use="required"/> <attribute name="Id" type="ID" use="optional"/> </complexType>  
    可以通过调用XMLSignatureFactory类的newSignatureProperty方法创建SignatureProperty实例; 例如:
      XMLSignatureFactory factory = XMLSignatureFactory.getInstance("DOM");
       SignatureProperty property = factory.newSignatureProperty
          (Collections.singletonList(content), "#Signature-1", "TimeStamp"); 
    从以下版本开始:
    1.6
    另请参见:
    XMLSignatureFactory.newSignatureProperty(List, String, String)SignatureProperties
    • 方法详细信息

      • getTarget

        String getTarget()
        返回此 SignatureProperty的目标URI。
        结果
        这个 SignatureProperty的目标URI(从未 null
      • getId

        String getId()
        返回此 SignatureProperty的Id。
        结果
        这个 SignatureProperty的标识(如果未指定, null
      • getContent

        List<XMLStructure> getContent()
        返回此SignatureProperty中包含的一个或多个XMLStructureSignatureProperty 这些代表有关生成XMLSignature附加信息项(即日期/时间戳或签名生成中使用的加密硬件的序列号)。
        结果
        an unmodifiable list of one or more XMLStructures