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

インタフェースSignatureMethod

すべてのスーパー・インタフェース:
AlgorithmMethod, XMLStructure

public interface SignatureMethod
extends XMLStructure, AlgorithmMethod
W3C Recommendation for XML-Signature Syntax and Processing」で定義されているXML SignatureMethod要素の表現。 XMLスキーマ定義は、次のように定義されます。
   <element name="SignatureMethod" type="ds:SignatureMethodType"/>
     <complexType name="SignatureMethodType" mixed="true">
       <sequence>
         <element name="HMACOutputLength" minOccurs="0" type="ds:HMACOutputLengthType"/>
         <any namespace="##any" minOccurs="0" maxOccurs="unbounded"/>
           <!-- (0,unbounded) elements from (1,1) namespace -->
       </sequence>
       <attribute name="Algorithm" type="anyURI" use="required"/>
     </complexType>
 
SignatureMethodインスタンスは、XMLSignatureFactoryクラスのnewSignatureMethodメソッドを呼び出すことで作成できます。
導入されたバージョン:
1.6
関連項目:
XMLSignatureFactory.newSignatureMethod(String, SignatureMethodParameterSpec)