接口 Transform

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

public interface Transform extends XMLStructure , AlgorithmMethod
W3C 对 XML 签名语法和处理的推荐 中定义的 XML Transform 元素的表示。 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
参见: