|
JavaTM Platform Standard Ed. 6 |
|||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
public interface Reference
「W3C Recommendation for XML-Signature Syntax and Processing」で定義されている XML Reference
要素の表現。XML スキーマは、次のように定義されます。
<element name="Reference" type="ds:ReferenceType"/>
<complexType name="ReferenceType">
<sequence>
<element ref="ds:Transforms" minOccurs="0"/>
<element ref="ds:DigestMethod"/>
<element ref="ds:DigestValue"/>
</sequence>
<attribute name="Id" type="ID" use="optional"/>
<attribute name="URI" type="anyURI" use="optional"/>
<attribute name="Type" type="anyURI" use="optional"/>
</complexType>
<element name="DigestValue" type="ds:DigestValueType"/>
<simpleType name="DigestValueType">
<restriction base="base64Binary"/>
</simpleType>
Reference
インスタンスは、XMLSignatureFactory
クラスの newReference
メソッドの 1 つを呼び出すことで作成されます。次に例を示します。
XMLSignatureFactory factory = XMLSignatureFactory.getInstance("DOM"); Reference ref = factory.newReference ("http://www.ietf.org/rfc/rfc3275.txt", factory.newDigestMethod(DigestMethod.SHA1, null));
XMLSignatureFactory.newReference(String, DigestMethod)
,
XMLSignatureFactory.newReference(String, DigestMethod, List, String, String)
メソッドの概要 | |
---|---|
byte[] |
getCalculatedDigestValue()
検証操作のあとで、この Reference の計算されたダイジェスト値を返します。 |
Data |
getDereferencedData()
参照キャッシュが有効な場合、間接参照されたデータを返します。 |
InputStream |
getDigestInputStream()
参照キャッシュが有効な場合、事前ダイジェストされた入力ストリームを返します。 |
DigestMethod |
getDigestMethod()
この Reference のダイジェストメソッドを返します。 |
byte[] |
getDigestValue()
この Reference のダイジェスト値を返します。 |
String |
getId()
この Reference の省略可能な Id 属性を返し、ほかの場所からこの参照が参照されることを許可します。 |
List |
getTransforms()
この Reference に格納されている Transform の変更不可能なリスト を返します。 |
boolean |
validate(XMLValidateContext validateContext)
この参照を検証します。 |
インタフェース javax.xml.crypto.URIReference から継承されたメソッド |
---|
getType, getURI |
インタフェース javax.xml.crypto.XMLStructure から継承されたメソッド |
---|
isFeatureSupported |
メソッドの詳細 |
---|
List getTransforms()
Reference
に格納されている Transform
の変更不可能なリスト
を返します。
Transform
の変更不可能なリスト。空の場合もあるが null
になることはないDigestMethod getDigestMethod()
Reference
のダイジェストメソッドを返します。
String getId()
Reference
の省略可能な Id
属性を返し、ほかの場所からこの参照が参照されることを許可します。
Id
属性。指定されていない場合は null
になることもあるbyte[] getDigestValue()
Reference
のダイジェスト値を返します。
null
。このメソッドの各呼び出しでは、以後の変更から保護するために新しいクローンが返されるbyte[] getCalculatedDigestValue()
Reference
の計算されたダイジェスト値を返します。このメソッドは、参照が検証に失敗した場合のデバッグに便利です。
null
このメソッドの各呼び出しでは、以後の変更から保護するために新しいクローンが返されるboolean validate(XMLValidateContext validateContext) throws XMLSignatureException
このメソッドは参照が最初に呼び出されたときのみ検証します。次回以降の呼び出しでは、キャッシュされた結果を返します。
validateContext
- 検証するコンテキスト
true
。そうでない場合は false
NullPointerException
- validateContext
が null
の場合
XMLSignatureException
- 参照の検証中に予想外の例外が発生した場合Data getDereferencedData()
null
InputStream getDigestInputStream()
null
|
JavaTM Platform Standard Ed. 6 |
|||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
Copyright 2009 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Documentation Redistribution Policy も参照してください。