モジュール java.xml.crypto
パッケージ javax.xml.crypto.dsig

インタフェースTransform

すべてのスーパー・インタフェース:
AlgorithmMethod, XMLStructure
既知のすべてのサブインタフェース:
CanonicalizationMethod
既知のすべての実装クラス:
TransformService

public interface Transform
extends XMLStructure, AlgorithmMethod
W3C Recommendation for XML-Signature Syntax and Processing」で定義されている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>
 
Transformインスタンスは、XMLSignatureFactoryクラスのnewTransformメソッドを呼び出すことで作成できます。
導入されたバージョン:
1.6
関連項目:
XMLSignatureFactory.newTransform(String, TransformParameterSpec)