Module java.xml.crypto

Interface Transform

所有超级接口:
AlgorithmMethod, XMLStructure
所有已知子接口:
CanonicalizationMethod
所有已知实现类:
TransformService

public interface Transform extends XMLStructure, AlgorithmMethod
XML Transform 元素的表示,如W3C XML签名语法和处理推荐标准中定义。 XML模式定义如下:
 <element name="Transform" type="ds:TransformType"/>
   <complexType name="TransformType" mixed="true">
     <choice minOccurs="0" maxOccurs="unbounded">
       <any namespace="##other" processContents="lax"/>
       <!-- (1,1) elements from (0,unbounded) namespaces -->
       <element name="XPath" type="string"/>
     </choice>
     <attribute name="Algorithm" type="anyURI" use="required"/>
   </complexType>
 
可通过调用XMLSignatureFactory类的newTransform方法创建Transform实例。
自版本:
1.6
另请参阅: