接口 CanonicalizationMethod

所有父级接口:
AlgorithmMethod , Transform , XMLStructure

public interface CanonicalizationMethod extends Transform
W3C 对 XML 签名语法和处理的推荐 中定义的 XML CanonicalizationMethod 元素的表示。 XML 架构定义定义为:
  <element name="CanonicalizationMethod" type="ds:CanonicalizationMethodType"/>
   <complexType name="CanonicalizationMethodType" mixed="true">
    <sequence>
     <any namespace="##any" minOccurs="0" maxOccurs="unbounded"/>
      <!-- (0,unbounded) elements from (1,1) namespace -->
    </sequence>
    <attribute name="Algorithm" type="anyURI" use="required"/>
   </complexType>
 
可以通过调用 XMLSignatureFactory 类的 newCanonicalizationMethod 方法来创建 CanonicalizationMethod 实例。
自从:
1.6
参见: