- すべてのスーパー・インタフェース:
XMLStructure
public interface SignatureProperties extends XMLStructure
「W3C Recommendation for XML-Signature Syntax and Processing」で定義されているXML
SignatureProperties
要素の表現。 XMLスキーマ定義は、次のように定義されます。
<element name="SignatureProperties" type="ds:SignaturePropertiesType"/>
<complexType name="SignaturePropertiesType">
<sequence>
<element ref="ds:SignatureProperty" maxOccurs="unbounded"/>
</sequence>
<attribute name="Id" type="ID" use="optional"/>
</complexType>
SignatureProperties
インスタンスは、XMLSignatureFactory
クラスのnewSignatureProperties
メソッドを呼び出すことで作成できます。次に例を示します。
XMLSignatureFactory factory = XMLSignatureFactory.getInstance("DOM"); SignatureProperties properties = factory.newSignatureProperties(props, "signature-properties-1");
- 導入されたバージョン:
- 1.6
- 関連項目:
XMLSignatureFactory.newSignatureProperties(List, String)
,SignatureProperty
-
フィールドのサマリー
-
メソッドのサマリー
修飾子と型 メソッド 説明 String
getId()
このSignatureProperties
の識別子を返します。List<SignatureProperty>
getProperties()
このSignatureProperties
に含まれている1つ以上のSignatureProperty
のunmodifiable list
を返します。インタフェース javax.xml.crypto.XMLStructureで宣言されたメソッド
isFeatureSupported
-
フィールド詳細
-
メソッドの詳細
-
getId
String getId()このSignatureProperties
の識別子を返します。- 戻り値:
- この
SignatureProperties
の識別子。指定されていない場合はnull
-
getProperties
List<SignatureProperty> getProperties()このSignatureProperties
に含まれている1つ以上のSignatureProperty
のunmodifiable list
を返します。- 戻り値:
- 1つ以上の
SignatureProperty
の変更不可能なリスト
-